|
@@ -20,6 +20,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="delFlag" column="del_flag" />
|
|
|
|
+ <result property="examinerName" column="examiner_name" />
|
|
|
|
+ <result property="veterinaryName" column="veterinary_name" />
|
|
|
|
+ <result property="supervisorConfirm" column="supervisor_confirm" />
|
|
|
|
+ <result property="cargoOwnerConfirm" column="cargoOwner_confirm" />
|
|
|
|
+ <result property="clerkName" column="clerk_name" />
|
|
|
|
+ <result property="directorConfirm" column="director_confirm" />
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<resultMap type="com.ruoyi.app.DTO.HarmlessSumDTO" id="HarmlessSumDTOResult">
|
|
<resultMap type="com.ruoyi.app.DTO.HarmlessSumDTO" id="HarmlessSumDTOResult">
|
|
@@ -69,6 +75,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="dealWay != null">deal_way,</if>
|
|
<if test="dealWay != null">deal_way,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
+ <if test="examinerName != null">examiner_name,</if>
|
|
|
|
+ <if test="veterinaryName != null">veterinary_name,</if>
|
|
|
|
+ <if test="supervisorConfirm != null">supervisor_confirm,</if>
|
|
|
|
+ <if test="cargoOwnerConfirm != null">cargo_owner_confirm,</if>
|
|
|
|
+ <if test="clerkName != null">clerk_name,</if>
|
|
|
|
+ <if test="directorConfirm != null">director_confirm,</if>
|
|
del_flag
|
|
del_flag
|
|
</trim>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
@@ -83,6 +95,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="dealWay != null">#{dealWay},</if>
|
|
<if test="dealWay != null">#{dealWay},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
+ <if test="examinerName != null">#{examinerName},</if>
|
|
|
|
+ <if test="veterinaryName != null">#{veterinaryName},</if>
|
|
|
|
+ <if test="supervisorConfirm != null">#{supervisorConfirm},</if>
|
|
|
|
+ <if test="cargoOwnerConfirm != null">#{cargoOwnerConfirm},</if>
|
|
|
|
+ <if test="clerkName != null">#{clerkName},</if>
|
|
|
|
+ <if test="directorConfirm != null">#{directorConfirm},</if>
|
|
'0'
|
|
'0'
|
|
</trim>
|
|
</trim>
|
|
</insert>
|
|
</insert>
|
|
@@ -101,6 +119,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="dealWay != null">deal_way = #{dealWay},</if>
|
|
<if test="dealWay != null">deal_way = #{dealWay},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
|
+ <if test="examinerName != null">examiner_name = #{examinerName},</if>
|
|
|
|
+ <if test="veterinaryName != null">veterinary_name = #{veterinaryName},</if>
|
|
|
|
+ <if test="supervisorConfirm != null">supervisor_confirm = #{supervisorConfirm},</if>
|
|
|
|
+ <if test="cargoOwnerConfirm != null">cargo_owner_confirm = #{cargoOwnerConfirm},</if>
|
|
|
|
+ <if test="clerkName != null">clerk_name = #{clerkName},</if>
|
|
|
|
+ <if test="directorConfirm != null">director_confirm = #{directorConfirm},</if>
|
|
</trim>
|
|
</trim>
|
|
where entrance_batch_id = #{entranceBatchId} and del_flag = '0'
|
|
where entrance_batch_id = #{entranceBatchId} and del_flag = '0'
|
|
</update>
|
|
</update>
|