修改页面和接口

This commit is contained in:
liuwu 2023-09-26 09:27:58 +08:00
parent 76f91a51ab
commit df361a21f4
2 changed files with 16 additions and 1 deletions

View File

@ -53,6 +53,16 @@ public class TAmentPartyAffairs extends BaseEntity
private String shotName; private String shotName;
private String examineType;
public String getExamineType() {
return examineType;
}
public void setExamineType(String examineType) {
this.examineType = examineType;
}
private String selectDate; private String selectDate;
public String getSelectDate() { public String getSelectDate() {
@ -381,6 +391,7 @@ public class TAmentPartyAffairs extends BaseEntity
.append("id", getId()) .append("id", getId())
.append("type", getType()) .append("type", getType())
.append("unit", getUnit()) .append("unit", getUnit())
.append("examineType", getExamineType())
.append("target", getTarget()) .append("target", getTarget())
.append("demand", getDemand()) .append("demand", getDemand())
.append("detailed", getDetailed()) .append("detailed", getDetailed())

View File

@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="unit" column="unit" /> <result property="unit" column="unit" />
<result property="target" column="target" /> <result property="target" column="target" />
<result property="shotName" column="shot_name" /> <result property="shotName" column="shot_name" />
<result property="examineType" column="examine_type" />
<result property="status" column="status" /> <result property="status" column="status" />
<result property="demand" column="demand" /> <result property="demand" column="demand" />
<result property="detailed" column="detailed" /> <result property="detailed" column="detailed" />
@ -32,7 +33,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectTAmentPartyAffairsVo"> <sql id="selectTAmentPartyAffairsVo">
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
</sql> </sql>
<select id="selectTAmentPartyAffairsList" parameterType="TAmentPartyAffairs" resultMap="TAmentPartyAffairsResult"> <select id="selectTAmentPartyAffairsList" parameterType="TAmentPartyAffairs" resultMap="TAmentPartyAffairsResult">
@ -373,6 +374,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="type != null and type != ''">type,</if> <if test="type != null and type != ''">type,</if>
<if test="unit != null">unit,</if> <if test="unit != null">unit,</if>
<if test="examineType != null">examine_type,</if>
<if test="target != null">target,</if> <if test="target != null">target,</if>
<if test="shotName != null">shot_name,</if> <if test="shotName != null">shot_name,</if>
<if test="demand != null">demand,</if> <if test="demand != null">demand,</if>
@ -396,6 +398,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="type != null and type != ''">#{type},</if> <if test="type != null and type != ''">#{type},</if>
<if test="unit != null">#{unit},</if> <if test="unit != null">#{unit},</if>
<if test="examineType != null">#{examineType},</if>
<if test="target != null">#{target},</if> <if test="target != null">#{target},</if>
<if test="shotName != null">#{shotName},</if> <if test="shotName != null">#{shotName},</if>
<if test="demand != null">#{demand},</if> <if test="demand != null">#{demand},</if>
@ -424,6 +427,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="type != null and type != ''">type = #{type},</if> <if test="type != null and type != ''">type = #{type},</if>
<if test="shotName != null and shotName != ''">shot_name = #{shotName},</if> <if test="shotName != null and shotName != ''">shot_name = #{shotName},</if>
<if test="unit != null">unit = #{unit},</if> <if test="unit != null">unit = #{unit},</if>
<if test="examineType != null">examineType = #{examine_type},</if>
<if test="target != null">target = #{target},</if> <if test="target != null">target = #{target},</if>
<if test="demand != null">demand = #{demand},</if> <if test="demand != null">demand = #{demand},</if>
<if test="detailed != null">detailed = #{detailed},</if> <if test="detailed != null">detailed = #{detailed},</if>