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