Compare commits
No commits in common. "e409c2dc4af6d4e3b96e6bb128d02a7c54accabe" and "a45f7b32ed64a84c036ee183d05ca4d7440bca09" have entirely different histories.
e409c2dc4a
...
a45f7b32ed
|
@ -53,16 +53,6 @@ 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() {
|
||||
|
@ -391,7 +381,6 @@ 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())
|
||||
|
|
|
@ -10,7 +10,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="unit" column="unit" />
|
||||
<result property="target" column="target" />
|
||||
<result property="shotName" column="shot_name" />
|
||||
<result property="examineType" column="examine_type" />
|
||||
<result property="status" column="status" />
|
||||
<result property="demand" column="demand" />
|
||||
<result property="detailed" column="detailed" />
|
||||
|
@ -33,7 +32,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</resultMap>
|
||||
|
||||
<sql id="selectTAmentPartyAffairsVo">
|
||||
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
|
||||
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
|
||||
</sql>
|
||||
|
||||
<select id="selectTAmentPartyAffairsList" parameterType="TAmentPartyAffairs" resultMap="TAmentPartyAffairsResult">
|
||||
|
@ -374,7 +373,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="type != null and type != ''">type,</if>
|
||||
<if test="unit != null">unit,</if>
|
||||
<if test="examineType != null">examine_type,</if>
|
||||
<if test="target != null">target,</if>
|
||||
<if test="shotName != null">shot_name,</if>
|
||||
<if test="demand != null">demand,</if>
|
||||
|
@ -398,7 +396,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="type != null and type != ''">#{type},</if>
|
||||
<if test="unit != null">#{unit},</if>
|
||||
<if test="examineType != null">#{examineType},</if>
|
||||
<if test="target != null">#{target},</if>
|
||||
<if test="shotName != null">#{shotName},</if>
|
||||
<if test="demand != null">#{demand},</if>
|
||||
|
@ -427,7 +424,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="type != null and type != ''">type = #{type},</if>
|
||||
<if test="shotName != null and shotName != ''">shot_name = #{shotName},</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="demand != null">demand = #{demand},</if>
|
||||
<if test="detailed != null">detailed = #{detailed},</if>
|
||||
|
|
Loading…
Reference in New Issue