From df361a21f4363573f6d8776f8e3665e5a779e087 Mon Sep 17 00:00:00 2001 From: liuwu <975499773@qq.com> Date: Tue, 26 Sep 2023 09:27:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A1=B5=E9=9D=A2=E5=92=8C?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/cyx/web/base/domain/TAmentPartyAffairs.java | 11 +++++++++++ .../mapper/base/TAmentPartyAffairsMapper.xml | 6 +++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/cyx-admin/src/main/java/com/cyx/web/base/domain/TAmentPartyAffairs.java b/cyx-admin/src/main/java/com/cyx/web/base/domain/TAmentPartyAffairs.java index 272d1a1..02f642e 100644 --- a/cyx-admin/src/main/java/com/cyx/web/base/domain/TAmentPartyAffairs.java +++ b/cyx-admin/src/main/java/com/cyx/web/base/domain/TAmentPartyAffairs.java @@ -53,6 +53,16 @@ public class TAmentPartyAffairs extends BaseEntity private String shotName; + private String examineType; + + public String getExamineType() { + return examineType; + } + + public void setExamineType(String examineType) { + this.examineType = examineType; + } + private String selectDate; public String getSelectDate() { @@ -381,6 +391,7 @@ public class TAmentPartyAffairs extends BaseEntity .append("id", getId()) .append("type", getType()) .append("unit", getUnit()) + .append("examineType", getExamineType()) .append("target", getTarget()) .append("demand", getDemand()) .append("detailed", getDetailed()) diff --git a/cyx-system/src/main/resources/mapper/base/TAmentPartyAffairsMapper.xml b/cyx-system/src/main/resources/mapper/base/TAmentPartyAffairsMapper.xml index 3ba37d3..d9d51c7 100644 --- a/cyx-system/src/main/resources/mapper/base/TAmentPartyAffairsMapper.xml +++ b/cyx-system/src/main/resources/mapper/base/TAmentPartyAffairsMapper.xml @@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + @@ -32,7 +33,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, type,shot_name ,files, unit, target, status, demand, detailed, degree, score,now_score, method, head, reviewed, finish_date, per_id, dept_id, branch_id, create_by, create_time, update_by, update_time, remark from t_ament_party_affairs + select id, type,shot_name ,examine_type ,files, unit, target, status, demand, detailed, degree, score,now_score, method, head, reviewed, finish_date, per_id, dept_id, branch_id, create_by, create_time, update_by, update_time, remark from t_ament_party_affairs