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.
LanJu_Mes/op-modules/op-quality/src/main/resources/mapper/quality/QcSampleRuleCodeMapper.xml

192 lines
7.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.quality.mapper.QcSampleRuleCodeMapper">
<resultMap type="QcSampleRuleCode" id="QcSampleRuleCodeResult">
<result property="id" column="id"/>
<result property="startValue" column="start_value"/>
<result property="endValue" column="end_value"/>
<result property="attr1" column="attr1"/>
<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="factoryCode" column="factory_code"/>
<result property="delFlag" column="del_flag"/>
<result property="sampleCode" column="sample_code"/>
<result property="checkType" column="check_type"/>
<result property="typeCode" column="type_code"/>
<result property="checkLevel" column="check_level"/>
</resultMap>
<sql id="selectQcSampleRuleCodeVo">
select id, start_value, end_value, attr1, create_by, create_time, update_by, update_time, factory_code, del_flag, sample_code, check_type, type_code, check_level from qc_sample_rule_code
</sql>
<select id="selectQcSampleRuleCodeList" parameterType="QcSampleRuleCode" resultMap="QcSampleRuleCodeResult">
<include refid="selectQcSampleRuleCodeVo"/>
<where>
<if test="startValue != null ">
and start_value = #{startValue}
</if>
<if test="endValue != null ">
and end_value = #{endValue}
</if>
<if test="attr1 != null and attr1 != ''">
and attr1 = #{attr1}
</if>
<if test="factoryCode != null and factoryCode != ''">
and factory_code = #{factoryCode}
</if>
<if test="sampleCode != null and sampleCode != ''">
and sample_code = #{sampleCode}
</if>
<if test="checkType != null and checkType != ''">
and check_type = #{checkType}
</if>
<if test="typeCode != null and typeCode != ''">
and type_code = #{typeCode}
</if>
<if test="checkLevel != null and checkLevel != ''">
and check_level = #{checkLevel}
</if>
and del_flag = '0'
</where>
order by check_level,start_value,end_value
</select>
<select id="selectQcSampleRuleCodeById" parameterType="String"
resultMap="QcSampleRuleCodeResult">
<include refid="selectQcSampleRuleCodeVo"/>
where id = #{id}
and del_flag = '0'
</select>
<insert id="insertQcSampleRuleCode" parameterType="QcSampleRuleCode">
insert into qc_sample_rule_code
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,
</if>
<if test="startValue != null">start_value,
</if>
<if test="endValue != null">end_value,
</if>
<if test="attr1 != null">attr1,
</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="factoryCode != null">factory_code,
</if>
<if test="delFlag != null">del_flag,
</if>
<if test="sampleCode != null">sample_code,
</if>
<if test="checkType != null">check_type,
</if>
<if test="typeCode != null">type_code,
</if>
<if test="checkLevel != null">check_level,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},
</if>
<if test="startValue != null">#{startValue},
</if>
<if test="endValue != null">#{endValue},
</if>
<if test="attr1 != null">#{attr1},
</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="factoryCode != null">#{factoryCode},
</if>
<if test="delFlag != null">#{delFlag},
</if>
<if test="sampleCode != null">#{sampleCode},
</if>
<if test="checkType != null">#{checkType},
</if>
<if test="typeCode != null">#{typeCode},
</if>
<if test="checkLevel != null">#{checkLevel},
</if>
</trim>
</insert>
<update id="updateQcSampleRuleCode" parameterType="QcSampleRuleCode">
update qc_sample_rule_code
<trim prefix="SET" suffixOverrides=",">
<if test="startValue != null">start_value =
#{startValue},
</if>
<if test="endValue != null">end_value =
#{endValue},
</if>
<if test="attr1 != null">attr1 =
#{attr1},
</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="factoryCode != null">factory_code =
#{factoryCode},
</if>
<if test="delFlag != null">del_flag =
#{delFlag},
</if>
<if test="sampleCode != null">sample_code =
#{sampleCode},
</if>
<if test="checkType != null">check_type =
#{checkType},
</if>
<if test="typeCode != null">type_code =
#{typeCode},
</if>
<if test="checkLevel != null">check_level =
#{checkLevel},
</if>
</trim>
where id = #{id}
</update>
<update id="deleteQcSampleRuleCodeById" parameterType="String">
update qc_sample_rule_code
set del_flag = '1'
where id = #{id}
</update>
<update id="deleteQcSampleRuleCodeByIds" parameterType="String">
update qc_sample_rule_code
set del_flag = '1'
where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</update>
</mapper>