|
|
@@ -17,6 +17,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="reviewScore" column="review_score" />
|
|
|
<result property="finalScore" column="final_score" />
|
|
|
<result property="isLeader" column="is_leader" />
|
|
|
+ <result property="feedbackReason" column="feedback_reason" />
|
|
|
+ <result property="confirmStatus" column="confirm_status" />
|
|
|
<result property="createBy" column="create_by" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
@@ -25,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectGxtWorkOrderPersonVo">
|
|
|
- select id, user_id, nick_name, order_id, order_code, status, mis_no, user_name, self_score, review_score, final_score, is_leader, create_by, create_time, update_by, update_time, remark
|
|
|
+ select id, user_id, nick_name, order_id, order_code, status, mis_no, user_name, self_score, review_score, final_score, is_leader, feedback_reason, confirm_status, create_by, create_time, update_by, update_time, remark
|
|
|
from gxt_work_order_person
|
|
|
</sql>
|
|
|
|
|
|
@@ -42,6 +44,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="reviewScore != null "> and review_score = #{reviewScore}</if>
|
|
|
<if test="finalScore != null "> and final_score = #{finalScore}</if>
|
|
|
<if test="isLeader != null "> and is_leader = #{isLeader}</if>
|
|
|
+ <if test="feedbackReason != null and feedbackReason != ''"> and feedback_reason = #{feedbackReason}</if>
|
|
|
+ <if test="confirmStatus != null "> and confirm_status = #{confirmStatus}</if>
|
|
|
</where>
|
|
|
order by create_time desc
|
|
|
</select>
|
|
|
@@ -71,6 +75,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="reviewScore != null">review_score,</if>
|
|
|
<if test="finalScore != null">final_score,</if>
|
|
|
<if test="isLeader != null">is_leader,</if>
|
|
|
+ <if test="feedbackReason != null">feedback_reason,</if>
|
|
|
+ <if test="confirmStatus != null">confirm_status,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
@@ -89,6 +95,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="reviewScore != null">#{reviewScore},</if>
|
|
|
<if test="finalScore != null">#{finalScore},</if>
|
|
|
<if test="isLeader != null">#{isLeader},</if>
|
|
|
+ <if test="feedbackReason != null">#{feedbackReason},</if>
|
|
|
+ <if test="confirmStatus != null">#{confirmStatus},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
@@ -111,6 +119,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="reviewScore != null">review_score = #{reviewScore},</if>
|
|
|
<if test="finalScore != null">final_score = #{finalScore},</if>
|
|
|
<if test="isLeader != null">is_leader = #{isLeader},</if>
|
|
|
+ <if test="feedbackReason != null">feedback_reason = #{feedbackReason},</if>
|
|
|
+ <if test="confirmStatus != null">confirm_status = #{confirmStatus},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|