|
@@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="useId" column="use_id" />
|
|
<result property="useId" column="use_id" />
|
|
<result property="checkUserName" column="check_user_name" />
|
|
<result property="checkUserName" column="check_user_name" />
|
|
<result property="checkUseId" column="check_use_id" />
|
|
<result property="checkUseId" column="check_use_id" />
|
|
|
|
+ <result property="checkStaffId" column="check_staff_id" />
|
|
<result property="checkUsePhone" column="check_use_phone" />
|
|
<result property="checkUsePhone" column="check_use_phone" />
|
|
<result property="checkResult" column="check_result" />
|
|
<result property="checkResult" column="check_result" />
|
|
<result property="checkResultDetails" column="check_result_details" />
|
|
<result property="checkResultDetails" column="check_result_details" />
|
|
@@ -29,7 +30,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectCheckPointRecordVo">
|
|
<sql id="selectCheckPointRecordVo">
|
|
- select check_point_record_id, check_point_manage_id, date_time_num, check_type, check_time, check_address, user_name, use_id, check_user_name, check_use_id, check_use_phone, check_result, check_result_details, check_result_photo, check_result_time, check_status, create_by, create_time, update_by, update_time, remark from check_point_record
|
|
|
|
|
|
+ select check_point_record_id, check_point_manage_id, date_time_num,check_staff_id, check_type, check_time, check_address, user_name, use_id, check_user_name, check_use_id, check_use_phone, check_result, check_result_details, check_result_photo, check_result_time, check_status, create_by, create_time, update_by, update_time, remark from check_point_record
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<select id="selectCheckPointRecordList" parameterType="CheckPointRecord" resultMap="CheckPointRecordResult">
|
|
<select id="selectCheckPointRecordList" parameterType="CheckPointRecord" resultMap="CheckPointRecordResult">
|
|
@@ -70,6 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="useId != null">use_id,</if>
|
|
<if test="useId != null">use_id,</if>
|
|
<if test="checkUserName != null">check_user_name,</if>
|
|
<if test="checkUserName != null">check_user_name,</if>
|
|
<if test="checkUseId != null">check_use_id,</if>
|
|
<if test="checkUseId != null">check_use_id,</if>
|
|
|
|
+ <if test="checkStaffId != null">check_staff_id,</if>
|
|
<if test="checkUsePhone != null">check_use_phone,</if>
|
|
<if test="checkUsePhone != null">check_use_phone,</if>
|
|
<if test="checkResult != null">check_result,</if>
|
|
<if test="checkResult != null">check_result,</if>
|
|
<if test="checkResultDetails != null">check_result_details,</if>
|
|
<if test="checkResultDetails != null">check_result_details,</if>
|
|
@@ -92,6 +94,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="useId != null">#{useId},</if>
|
|
<if test="useId != null">#{useId},</if>
|
|
<if test="checkUserName != null">#{checkUserName},</if>
|
|
<if test="checkUserName != null">#{checkUserName},</if>
|
|
<if test="checkUseId != null">#{checkUseId},</if>
|
|
<if test="checkUseId != null">#{checkUseId},</if>
|
|
|
|
+ <if test="checkStaffId != null">#{checkStaffId},</if>
|
|
<if test="checkUsePhone != null">#{checkUsePhone},</if>
|
|
<if test="checkUsePhone != null">#{checkUsePhone},</if>
|
|
<if test="checkResult != null">#{checkResult},</if>
|
|
<if test="checkResult != null">#{checkResult},</if>
|
|
<if test="checkResultDetails != null">#{checkResultDetails},</if>
|
|
<if test="checkResultDetails != null">#{checkResultDetails},</if>
|
|
@@ -118,6 +121,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="useId != null">use_id = #{useId},</if>
|
|
<if test="useId != null">use_id = #{useId},</if>
|
|
<if test="checkUserName != null">check_user_name = #{checkUserName},</if>
|
|
<if test="checkUserName != null">check_user_name = #{checkUserName},</if>
|
|
<if test="checkUseId != null">check_use_id = #{checkUseId},</if>
|
|
<if test="checkUseId != null">check_use_id = #{checkUseId},</if>
|
|
|
|
+ <if test="checkStaffId != null">check_staff_id = #{checkStaffId},</if>
|
|
<if test="checkUsePhone != null">check_use_phone = #{checkUsePhone},</if>
|
|
<if test="checkUsePhone != null">check_use_phone = #{checkUsePhone},</if>
|
|
<if test="checkResult != null">check_result = #{checkResult},</if>
|
|
<if test="checkResult != null">check_result = #{checkResult},</if>
|
|
<if test="checkResultDetails != null">check_result_details = #{checkResultDetails},</if>
|
|
<if test="checkResultDetails != null">check_result_details = #{checkResultDetails},</if>
|