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.
167 lines
8.0 KiB
XML
167 lines
8.0 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.op.mes.mapper.MesPrepareDetailMapper">
|
|
|
|
<resultMap type="MesPrepareDetail" id="MesPrepareDetailResult">
|
|
<result property="recordId" column="record_id" />
|
|
<result property="prepareId" column="prepare_id" />
|
|
<result property="materialCode" column="material_code" />
|
|
<result property="materailName" column="materail_name" />
|
|
<result property="materailSpc" column="materail_spc" />
|
|
<result property="unit" column="unit" />
|
|
<result property="quantity" column="quantity" />
|
|
<result property="productDate" column="product_date" />
|
|
<result property="shiftId" column="shift_id" />
|
|
<result property="status" column="status" />
|
|
<result property="remark" column="remark" />
|
|
<result property="attr1" column="attr1" />
|
|
<result property="attr2" column="attr2" />
|
|
<result property="attr3" column="attr3" />
|
|
<result property="attr4" column="attr4" />
|
|
<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="prodType" column="prod_type" />
|
|
<result property="factoryCode" column="factory_code" />
|
|
</resultMap>
|
|
|
|
<sql id="selectMesPrepareDetailVo">
|
|
select record_id, prepare_id, material_code, materail_name, materail_spc, unit,
|
|
quantity, product_date, shift_id, status, remark, attr1, attr2, attr3, attr4,
|
|
create_by, create_time, update_by, update_time, prod_type, factory_code
|
|
from mes_prepare_detail
|
|
</sql>
|
|
|
|
<select id="selectMesPrepareDetailList" parameterType="MesPrepareDetail" resultMap="MesPrepareDetailResult">
|
|
<include refid="selectMesPrepareDetailVo"/>
|
|
<where>
|
|
<if test="prepareId != null and prepareId != ''"> and prepare_id = #{prepareId}</if>
|
|
<if test="materialCode != null and materialCode != ''"> and material_code = #{materialCode}</if>
|
|
<if test="materailName != null and materailName != ''"> and materail_name like concat('%', #{materailName}, '%')</if>
|
|
<if test="materailSpc != null and materailSpc != ''"> and materail_spc = #{materailSpc}</if>
|
|
<if test="unit != null and unit != ''"> and unit = #{unit}</if>
|
|
<if test="quantity != null "> and quantity = #{quantity}</if>
|
|
<if test="productDate != null "> and product_date = #{productDate}</if>
|
|
<if test="shiftId != null and shiftId != ''"> and shift_id = #{shiftId}</if>
|
|
<if test="status != null and status != ''"> and status = #{status}</if>
|
|
<if test="attr1 != null and attr1 != ''"> and attr1 = #{attr1}</if>
|
|
<if test="attr2 != null and attr2 != ''"> and attr2 = #{attr2}</if>
|
|
<if test="attr3 != null and attr3 != ''"> and attr3 = #{attr3}</if>
|
|
<if test="attr4 != null and attr4 != ''"> and attr4 = #{attr4}</if>
|
|
<if test="prodType != null and prodType != ''"> and prod_type = #{prodType}</if>
|
|
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectMesPrepareDetailByRecordId" parameterType="String" resultMap="MesPrepareDetailResult">
|
|
<include refid="selectMesPrepareDetailVo"/>
|
|
where record_id = #{recordId}
|
|
</select>
|
|
|
|
<insert id="insertMesPrepareDetail" parameterType="MesPrepareDetail">
|
|
insert into mes_prepare_detail
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="recordId != null">record_id,</if>
|
|
<if test="prepareId != null and prepareId != ''">prepare_id,</if>
|
|
<if test="materialCode != null and materialCode != ''">material_code,</if>
|
|
<if test="materailName != null and materailName != ''">materail_name,</if>
|
|
<if test="materailSpc != null">materail_spc,</if>
|
|
<if test="unit != null and unit != ''">unit,</if>
|
|
<if test="quantity != null">quantity,</if>
|
|
<if test="productDate != null">product_date,</if>
|
|
<if test="shiftId != null">shift_id,</if>
|
|
<if test="status != null">status,</if>
|
|
<if test="remark != null">remark,</if>
|
|
<if test="attr1 != null">attr1,</if>
|
|
<if test="attr2 != null">attr2,</if>
|
|
<if test="attr3 != null">attr3,</if>
|
|
<if test="attr4 != null">attr4,</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>
|
|
<if test="prodType != null">prod_type,</if>
|
|
<if test="factoryCode != null">factory_code,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="recordId != null">#{recordId},</if>
|
|
<if test="prepareId != null and prepareId != ''">#{prepareId},</if>
|
|
<if test="materialCode != null and materialCode != ''">#{materialCode},</if>
|
|
<if test="materailName != null and materailName != ''">#{materailName},</if>
|
|
<if test="materailSpc != null">#{materailSpc},</if>
|
|
<if test="unit != null and unit != ''">#{unit},</if>
|
|
<if test="quantity != null">#{quantity},</if>
|
|
<if test="productDate != null">#{productDate},</if>
|
|
<if test="shiftId != null">#{shiftId},</if>
|
|
<if test="status != null">#{status},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
<if test="attr1 != null">#{attr1},</if>
|
|
<if test="attr2 != null">#{attr2},</if>
|
|
<if test="attr3 != null">#{attr3},</if>
|
|
<if test="attr4 != null">#{attr4},</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>
|
|
<if test="prodType != null">#{prodType},</if>
|
|
<if test="factoryCode != null">#{factoryCode},</if>
|
|
</trim>
|
|
</insert>
|
|
<insert id="insertMesPrepareDetails">
|
|
INSERT INTO mes_prepare_detail (
|
|
record_id,prepare_id,material_code,material_name,unit,
|
|
quantity,create_by,create_time,factory_code,status,
|
|
locator,need_date,recoil,fund_quanlity,buy_flag
|
|
)VALUES
|
|
<foreach collection="list" item="d" index="index" separator=",">
|
|
(
|
|
#{d.recordId},#{d.prepareId},#{d.materialCode},#{d.materailName},#{d.unit},
|
|
#{d.quantity},#{d.createBy},#{d.createTime},#{d.factoryCode},#{d.status},
|
|
#{d.locator},#{d.needDate},#{d.recoil},#{d.fundQuanlity},#{d.buyFlag}
|
|
)
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
<update id="updateMesPrepareDetail" parameterType="MesPrepareDetail">
|
|
update mes_prepare_detail
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="prepareId != null and prepareId != ''">prepare_id = #{prepareId},</if>
|
|
<if test="materialCode != null and materialCode != ''">material_code = #{materialCode},</if>
|
|
<if test="materailName != null and materailName != ''">materail_name = #{materailName},</if>
|
|
<if test="materailSpc != null">materail_spc = #{materailSpc},</if>
|
|
<if test="unit != null and unit != ''">unit = #{unit},</if>
|
|
<if test="quantity != null">quantity = #{quantity},</if>
|
|
<if test="productDate != null">product_date = #{productDate},</if>
|
|
<if test="shiftId != null">shift_id = #{shiftId},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
<if test="attr1 != null">attr1 = #{attr1},</if>
|
|
<if test="attr2 != null">attr2 = #{attr2},</if>
|
|
<if test="attr3 != null">attr3 = #{attr3},</if>
|
|
<if test="attr4 != null">attr4 = #{attr4},</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>
|
|
<if test="prodType != null">prod_type = #{prodType},</if>
|
|
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
|
|
</trim>
|
|
where record_id = #{recordId}
|
|
</update>
|
|
|
|
<delete id="deleteMesPrepareDetailByRecordId" parameterType="String">
|
|
delete from mes_prepare_detail where record_id = #{recordId}
|
|
</delete>
|
|
|
|
<delete id="deleteMesPrepareDetailByRecordIds" parameterType="String">
|
|
delete from mes_prepare_detail where record_id in
|
|
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
|
#{recordId}
|
|
</foreach>
|
|
</delete>
|
|
</mapper>
|