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-device/src/main/resources/mapper/device/EquCheckItemDetailMapper.xml

166 lines
9.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.op.device.mapper.EquCheckItemDetailMapper">
<resultMap type="EquCheckItemDetail" id="EquCheckItemDetailResult">
<result property="detailId" column="detail_id" />
<result property="parentCode" column="parent_code" />
<result property="standardType" column="standard_type" />
<result property="standardName" column="standard_name" />
<result property="factoryCode" column="factory_code" />
<result property="detailUpLimit" column="detail_up_limit" />
<result property="detailDownLimit" column="detail_down_limit" />
<result property="detailUnit" column="detail_unit" />
<result property="attr1" column="attr1" />
<result property="attr2" column="attr2" />
<result property="attr3" column="attr3" />
<result property="delFlag" column="del_flag" />
<result property="createTime" column="create_time" />
<result property="createBy" column="create_by" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
<result property="detailCode" column="detail_code" />
</resultMap>
<sql id="selectEquCheckItemDetailVo">
select detail_id, parent_code, standard_type, standard_name, factory_code, detail_up_limit, detail_down_limit,
detail_unit, attr1, attr2, attr3, del_flag, create_time, create_by, update_time, update_by, detail_code
from equ_check_item_detail
</sql>
<select id="selectEquCheckItemDetailList" parameterType="EquCheckItemDetail" resultMap="EquCheckItemDetailResult">
<include refid="selectEquCheckItemDetailVo"/>
<where>
<if test="parentCode != null and parentCode != ''"> and parent_code = #{parentCode}</if>
<if test="standardType != null and standardType != ''"> and standard_type = #{standardType}</if>
<if test="standardName != null and standardName != ''"> and standard_name like concat('%', #{standardName}, '%')</if>
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
<if test="detailUpLimit != null "> and detail_up_limit = #{detailUpLimit}</if>
<if test="detailDownLimit != null "> and detail_down_limit = #{detailDownLimit}</if>
<if test="detailUnit != null and detailUnit != ''"> and detail_unit = #{detailUnit}</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="createTime != null "> and create_time = #{createTime}</if>
<if test="createBy != null and createBy != ''"> and create_by = #{createBy}</if>
<if test="updateTime != null "> and update_time = #{updateTime}</if>
<if test="updateBy != null and updateBy != ''"> and update_by = #{updateBy}</if>
<if test="detailCode != null and detailCode != ''"> and detail_code = #{detailCode}</if>
</where>
and del_flag = '0'
</select>
<select id="selectEquCheckItemDetailByDetailId" parameterType="String" resultMap="EquCheckItemDetailResult">
<include refid="selectEquCheckItemDetailVo"/>
where detail_id = #{detailId} and del_flag = '0'
</select>
<select id="selectSerialNumber" resultType="java.lang.Integer">
SELECT COUNT(detail_id)+1 AS serialNum
FROM equ_check_item_detail
WHERE CONVERT(date, GETDATE()) = CONVERT(date,create_time) and parent_code = #{itemCode} and del_flag = '0'
</select>
<select id="selectEquCheckItemDetailByParentCode" parameterType="String" resultMap="EquCheckItemDetailResult">
<include refid="selectEquCheckItemDetailVo"/>
where parent_code = #{parentCode} and del_flag = '0'
ORDER BY create_time
</select>
<select id="selectCheckItemDetailByItemCode" parameterType="String" resultMap="EquCheckItemDetailResult">
<include refid="selectEquCheckItemDetailVo"/>
where parent_code = #{itemCode} and del_flag = '0'
</select>
<insert id="insertEquCheckItemDetail" parameterType="EquCheckItemDetail">
insert into equ_check_item_detail
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="detailId != null">detail_id,</if>
<if test="parentCode != null and parentCode != ''">parent_code,</if>
<if test="standardType != null and standardType != ''">standard_type,</if>
<if test="standardName != null and standardName != ''">standard_name,</if>
<if test="factoryCode != null">factory_code,</if>
<if test="detailUpLimit != null">detail_up_limit,</if>
<if test="detailDownLimit != null">detail_down_limit,</if>
<if test="detailUnit != null and detailUnit != ''">detail_unit,</if>
<if test="attr1 != null">attr1,</if>
<if test="attr2 != null">attr2,</if>
<if test="attr3 != null">attr3,</if>
<if test="delFlag != null and delFlag != ''">del_flag,</if>
<if test="createTime != null">create_time,</if>
<if test="createBy != null and createBy != ''">create_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="updateBy != null and updateBy != ''">update_by,</if>
<if test="detailCode != null and detailCode != ''">detail_code,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="detailId != null">#{detailId},</if>
<if test="parentCode != null and parentCode != ''">#{parentCode},</if>
<if test="standardType != null and standardType != ''">#{standardType},</if>
<if test="standardName != null and standardName != ''">#{standardName},</if>
<if test="factoryCode != null">#{factoryCode},</if>
<if test="detailUpLimit != null">#{detailUpLimit},</if>
<if test="detailDownLimit != null">#{detailDownLimit},</if>
<if test="detailUnit != null and detailUnit != ''">#{detailUnit},</if>
<if test="attr1 != null">#{attr1},</if>
<if test="attr2 != null">#{attr2},</if>
<if test="attr3 != null">#{attr3},</if>
<if test="delFlag != null and delFlag != ''">#{delFlag},</if>
<if test="createTime != null">#{createTime},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="updateBy != null and updateBy != ''">#{updateBy},</if>
<if test="detailCode != null and detailCode != ''">#{detailCode},</if>
</trim>
</insert>
<update id="updateEquCheckItemDetail" parameterType="EquCheckItemDetail">
update equ_check_item_detail
<trim prefix="SET" suffixOverrides=",">
<if test="parentCode != null and parentCode != ''">parent_code = #{parentCode},</if>
<if test="standardType != null and standardType != ''">standard_type = #{standardType},</if>
<if test="standardName != null and standardName != ''">standard_name = #{standardName},</if>
<if test="factoryCode != null">factory_code = #{factoryCode},</if>
<if test="detailUpLimit != null">detail_up_limit = #{detailUpLimit},</if>
<if test="detailDownLimit != null">detail_down_limit = #{detailDownLimit},</if>
<if test="detailUnit != null and detailUnit != ''">detail_unit = #{detailUnit},</if>
<if test="attr1 != null">attr1 = #{attr1},</if>
<if test="attr2 != null">attr2 = #{attr2},</if>
<if test="attr3 != null">attr3 = #{attr3},</if>
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="createBy != null and createBy != ''">create_by = #{createBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
<if test="detailCode != null and detailCode != ''">detail_code = #{detailCode},</if>
</trim>
where detail_id = #{detailId} and del_flag = '0'
</update>
<delete id="deleteEquCheckItemDetailByItemId" parameterType="String">
delete from equ_check_item_detail
where parent_code = (
select item_code from equ_check_item where item_id = #{itemId} )
</delete>
<delete id="deleteEquCheckItemDetailByDetailId" parameterType="String">
delete from equ_check_item_detail where detail_id = #{detailId}
</delete>
<delete id="deleteEquCheckItemDetailByDetailIds" parameterType="String">
delete from equ_check_item_detail where detail_id in
<foreach item="detailId" collection="array" open="(" separator="," close=")">
#{detailId}
</foreach>
</delete>
<delete id="delEquCheckItemDetailByItemId">
update equ_check_item_detail
set del_flag = '1'
where parent_code = (
select item_code from equ_check_item where item_id = #{itemId} )
</delete>
</mapper>