You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
HwMes/hw-modules/hw-mes/src/main/resources/mapper/mes/MesPurchaseApplyProcessDeta...

119 lines
6.3 KiB
XML

<?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">
<mapper namespace="com.hw.mes.mapper.MesPurchaseApplyProcessDetailMapper">
<resultMap type="MesPurchaseApplyProcessDetail" id="MesPurchaseApplyProcessDetailResult">
<result property="purchaseApplyDetailId" column="purchase_apply_detail_id"/>
<result property="taskCode" column="task_code"/>
<result property="processActivityId" column="process_activity_id"/>
<result property="anomalyFlag" column="anomaly_flag"/>
<result property="updateFlag" column="update_flag"/>
<result property="noticeFlag" column="notice_flag"/>
<result property="noticeAuth" column="notice_auth"/>
<result property="purchaseRemark" column="purchase_remark"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
</resultMap>
<sql id="selectMesPurchaseApplyProcessDetailVo">
select purchase_apply_detail_id,
task_code,
process_activity_id,
anomaly_flag,
update_flag,
notice_flag,
notice_auth,
purchase_remark,
create_by,
create_time,
update_by,
update_time
from mes_purchase_apply_process_detail
</sql>
<select id="selectMesPurchaseApplyProcessDetailList" parameterType="MesPurchaseApplyProcessDetail"
resultMap="MesPurchaseApplyProcessDetailResult">
<include refid="selectMesPurchaseApplyProcessDetailVo"/>
<where>
<if test="taskCode != null and taskCode != ''">and task_code = #{taskCode}</if>
<if test="processActivityId != null ">and process_activity_id = #{processActivityId}</if>
<if test="anomalyFlag != null and anomalyFlag != ''">and anomaly_flag = #{anomalyFlag}</if>
<if test="updateFlag != null and updateFlag != ''">and update_flag = #{updateFlag}</if>
<if test="noticeFlag != null and noticeFlag != ''">and notice_flag = #{noticeFlag}</if>
<if test="noticeAuth != null and noticeAuth != ''">and notice_auth = #{noticeAuth}</if>
<if test="purchaseRemark != null and purchaseRemark != ''">and purchase_remark = #{purchaseRemark}</if>
</where>
</select>
<select id="selectMesPurchaseApplyProcessDetailByPurchaseApplyDetailId" parameterType="Long"
resultMap="MesPurchaseApplyProcessDetailResult">
<include refid="selectMesPurchaseApplyProcessDetailVo"/>
where purchase_apply_detail_id = #{purchaseApplyDetailId}
</select>
<insert id="insertMesPurchaseApplyProcessDetail" parameterType="MesPurchaseApplyProcessDetail"
useGeneratedKeys="true" keyProperty="purchaseApplyDetailId">
insert into mes_purchase_apply_process_detail
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="taskCode != null and taskCode != ''">task_code,</if>
<if test="processActivityId != null">process_activity_id,</if>
<if test="anomalyFlag != null">anomaly_flag,</if>
<if test="updateFlag != null">update_flag,</if>
<if test="noticeFlag != null">notice_flag,</if>
<if test="noticeAuth != null">notice_auth,</if>
<if test="purchaseRemark != null">purchase_remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="taskCode != null and taskCode != ''">#{taskCode},</if>
<if test="processActivityId != null">#{processActivityId},</if>
<if test="anomalyFlag != null">#{anomalyFlag},</if>
<if test="updateFlag != null">#{updateFlag},</if>
<if test="noticeFlag != null">#{noticeFlag},</if>
<if test="noticeAuth != null">#{noticeAuth},</if>
<if test="purchaseRemark != null">#{purchaseRemark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateMesPurchaseApplyProcessDetail" parameterType="MesPurchaseApplyProcessDetail">
update mes_purchase_apply_process_detail
<trim prefix="SET" suffixOverrides=",">
<if test="taskCode != null and taskCode != ''">task_code = #{taskCode},</if>
<if test="processActivityId != null">process_activity_id = #{processActivityId},</if>
<if test="anomalyFlag != null">anomaly_flag = #{anomalyFlag},</if>
<if test="updateFlag != null">update_flag = #{updateFlag},</if>
<if test="noticeFlag != null">notice_flag = #{noticeFlag},</if>
<if test="noticeAuth != null">notice_auth = #{noticeAuth},</if>
<if test="purchaseRemark != null">purchase_remark = #{purchaseRemark},</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>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where purchase_apply_detail_id = #{purchaseApplyDetailId}
</update>
<delete id="deleteMesPurchaseApplyProcessDetailByPurchaseApplyDetailId" parameterType="Long">
delete
from mes_purchase_apply_process_detail
where purchase_apply_detail_id = #{purchaseApplyDetailId}
</delete>
<delete id="deleteMesPurchaseApplyProcessDetailByPurchaseApplyDetailIds" parameterType="String">
delete from mes_purchase_apply_process_detail where purchase_apply_detail_id in
<foreach item="purchaseApplyDetailId" collection="array" open="(" separator="," close=")">
#{purchaseApplyDetailId}
</foreach>
</delete>
</mapper>