来料检验单行的缺陷信息
This commit is contained in:
116
ktg-mes/src/main/resources/mapper/qc/QcIqcDefectMapper.xml
Normal file
116
ktg-mes/src/main/resources/mapper/qc/QcIqcDefectMapper.xml
Normal file
@@ -0,0 +1,116 @@
|
||||
<?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.ktg.mes.qc.mapper.QcIqcDefectMapper">
|
||||
|
||||
<resultMap type="QcIqcDefect" id="QcIqcDefectResult">
|
||||
<result property="recordId" column="record_id" />
|
||||
<result property="iqcId" column="iqc_id" />
|
||||
<result property="lineId" column="line_id" />
|
||||
<result property="defectName" column="defect_name" />
|
||||
<result property="defectLevel" column="defect_level" />
|
||||
<result property="defectQuantity" column="defect_quantity" />
|
||||
<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" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectQcIqcDefectVo">
|
||||
select record_id, iqc_id, line_id, defect_name, defect_level, defect_quantity, remark, attr1, attr2, attr3, attr4, create_by, create_time, update_by, update_time from qc_iqc_defect
|
||||
</sql>
|
||||
|
||||
<select id="selectQcIqcDefectList" parameterType="QcIqcDefect" resultMap="QcIqcDefectResult">
|
||||
<include refid="selectQcIqcDefectVo"/>
|
||||
<where>
|
||||
<if test="iqcId != null "> and iqc_id = #{iqcId}</if>
|
||||
<if test="lineId != null "> and line_id = #{lineId}</if>
|
||||
<if test="defectName != null and defectName != ''"> and defect_name like concat('%', #{defectName}, '%')</if>
|
||||
<if test="defectLevel != null and defectLevel != ''"> and defect_level = #{defectLevel}</if>
|
||||
<if test="defectQuantity != null "> and defect_quantity = #{defectQuantity}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectQcIqcDefectByRecordId" parameterType="Long" resultMap="QcIqcDefectResult">
|
||||
<include refid="selectQcIqcDefectVo"/>
|
||||
where record_id = #{recordId}
|
||||
</select>
|
||||
|
||||
<insert id="insertQcIqcDefect" parameterType="QcIqcDefect" useGeneratedKeys="true" keyProperty="recordId">
|
||||
insert into qc_iqc_defect
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="iqcId != null">iqc_id,</if>
|
||||
<if test="lineId != null">line_id,</if>
|
||||
<if test="defectName != null and defectName != ''">defect_name,</if>
|
||||
<if test="defectLevel != null and defectLevel != ''">defect_level,</if>
|
||||
<if test="defectQuantity != null">defect_quantity,</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>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="iqcId != null">#{iqcId},</if>
|
||||
<if test="lineId != null">#{lineId},</if>
|
||||
<if test="defectName != null and defectName != ''">#{defectName},</if>
|
||||
<if test="defectLevel != null and defectLevel != ''">#{defectLevel},</if>
|
||||
<if test="defectQuantity != null">#{defectQuantity},</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>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateQcIqcDefect" parameterType="QcIqcDefect">
|
||||
update qc_iqc_defect
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="iqcId != null">iqc_id = #{iqcId},</if>
|
||||
<if test="lineId != null">line_id = #{lineId},</if>
|
||||
<if test="defectName != null and defectName != ''">defect_name = #{defectName},</if>
|
||||
<if test="defectLevel != null and defectLevel != ''">defect_level = #{defectLevel},</if>
|
||||
<if test="defectQuantity != null">defect_quantity = #{defectQuantity},</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>
|
||||
</trim>
|
||||
where record_id = #{recordId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteQcIqcDefectByRecordId" parameterType="Long">
|
||||
delete from qc_iqc_defect where record_id = #{recordId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByIqcId" parameterType="Long">
|
||||
delete from qc_iqc_defect where iqc_id = #{iqcId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteQcIqcDefectByRecordIds" parameterType="String">
|
||||
delete from qc_iqc_defect where record_id in
|
||||
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
||||
#{recordId}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user