2026-02-03 09:19:53 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
|
<!DOCTYPE mapper
|
|
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
2026-02-03 10:04:47 +08:00
|
|
|
<mapper namespace="com.klp.mes.qc.mapper.WmsCheckTaskCoilRelationMapper">
|
2026-02-03 09:19:53 +08:00
|
|
|
|
2026-02-03 10:04:47 +08:00
|
|
|
<resultMap type="com.klp.mes.qc.domain.WmsCheckTaskCoilRelation" id="WmsCheckTaskCoilRelationResult">
|
2026-02-03 09:19:53 +08:00
|
|
|
<result property="relationId" column="relation_id"/>
|
|
|
|
|
<result property="taskId" column="task_id"/>
|
|
|
|
|
<result property="coilId" column="coil_id"/>
|
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="delFlag" column="del_flag"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
2026-02-03 10:04:47 +08:00
|
|
|
<delete id="deleteByTaskIds" parameterType="java.util.Collection">
|
|
|
|
|
UPDATE wms_check_task_coil_relation SET del_flag = 1
|
|
|
|
|
WHERE task_id IN
|
|
|
|
|
<foreach collection="list" item="taskId" open="(" close=")" separator=",">
|
|
|
|
|
#{taskId}
|
|
|
|
|
</foreach>
|
|
|
|
|
</delete>
|
2026-02-03 09:19:53 +08:00
|
|
|
|
|
|
|
|
</mapper>
|