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.
216 lines
11 KiB
XML
216 lines
11 KiB
XML
2 years ago
|
<?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.QcProCheckMapper">
|
||
|
|
||
|
<resultMap type="QcProCheck" id="QcProCheckResult">
|
||
|
<result property="id" column="id"/>
|
||
|
<result property="rfid" column="rfid"/>
|
||
|
<result property="factoryId" column="factory_id"/>
|
||
|
<result property="factoryCode" column="factory_code"/>
|
||
|
<result property="workorderId" column="workorder_id" />
|
||
|
<result property="workorderCode" column="workorder_code" />
|
||
|
<result property="workorderName" column="workorder_name" />
|
||
|
<result property="orderId" column="order_id" />
|
||
|
<result property="orderCode" column="order_code" />
|
||
|
<result property="machineId" column="machine_id" />
|
||
|
<result property="machineCode" column="machine_code" />
|
||
2 years ago
|
<result property="machineName" column="machine_name" />
|
||
2 years ago
|
<result property="badMeg" column="bad_meg" />
|
||
|
<result property="productId" column="product_id" />
|
||
|
<result property="productCode" column="product_code" />
|
||
2 years ago
|
<result property="productName" column="product_name" />
|
||
|
<result property="productSpc" column="product_spc" />
|
||
2 years ago
|
<result property="isqua" column="isqua" />
|
||
|
<result property="fileId" column="file_id" />
|
||
|
<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="updateBy" column="update_by" />
|
||
|
<result property="createTime" column="create_time" />
|
||
|
<result property="updateTime" column="update_time" />
|
||
2 years ago
|
<collection property="fileList" column="id" select="queryImg"></collection>
|
||
2 years ago
|
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="selectQuaVo">
|
||
2 years ago
|
select id,rfid,factory_id,factory_code,order_id,machine_id,bad_meg,product_id,isqua,file_id,attr1,attr2,
|
||
2 years ago
|
attr3,attr4,create_by,create_time,update_by,update_time,order_code,machine_code,
|
||
|
workorder_id,workorder_code,workorder_name,product_code
|
||
|
from qc_pro_check
|
||
|
</sql>
|
||
|
|
||
|
<select id="selectQcProCheckList" parameterType="QcProCheck" resultMap="QcProCheckResult">
|
||
2 years ago
|
select qpc.id,qpc.rfid,qpc.factory_code,qpc.machine_id,qpc.bad_meg,
|
||
2 years ago
|
qpc.product_id,qpc.isqua,qpc.file_id,qpc.attr1,qpc.attr2,
|
||
2 years ago
|
qpc.attr3,qpc.attr4,qpc.create_by,qpc.create_time,qpc.update_by,
|
||
|
qpc.update_time,qpc.order_code,qpc.machine_code,qpc.machine_name,
|
||
|
qpc.workorder_id,qpc.workorder_code,qpc.workorder_name,qpc.product_code,
|
||
|
qpc.product_name,qpc.product_spc
|
||
|
from qc_pro_check qpc
|
||
2 years ago
|
<where>
|
||
2 years ago
|
<if test="rfid != null and rfid != ''"> and qpc.id = #{id}</if>
|
||
|
<if test="createBy != null and createBy != ''"> and qpc.create_by = #{createBy}</if>
|
||
2 years ago
|
</where>
|
||
2 years ago
|
order by qpc.create_time desc
|
||
2 years ago
|
</select>
|
||
|
|
||
2 years ago
|
<insert id="insertQcProCheck" parameterType="QcProCheck" useGeneratedKeys="true" keyProperty="id">
|
||
2 years ago
|
insert into qc_pro_check
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
2 years ago
|
<if test="rfid != null and rfid != ''">rfid,</if>
|
||
2 years ago
|
<if test="id != null and id != ''">id,</if>
|
||
|
<if test="factoryId != null and factoryId != ''">factory_id,</if>
|
||
|
<if test="factoryCode != null and factoryCode != ''">factory_code,</if>
|
||
|
<if test="workorderId != null and workorderId != ''">workorder_id,</if>
|
||
|
<if test="workorderCode != null and workorderCode != ''">workorder_code,</if>
|
||
|
<if test="workorderName != null and workorderName != ''">workorder_name,</if>
|
||
|
<if test="orderId != null and orderId != ''">order_id,</if>
|
||
|
<if test="orderCode != null and orderCode != ''">order_code,</if>
|
||
|
<if test="machineId != null">machine_id,</if>
|
||
|
<if test="machineCode != null">machine_code,</if>
|
||
2 years ago
|
<if test="machineName != null">machine_name,</if>
|
||
2 years ago
|
<if test="badMeg != null and badMeg != ''">bad_meg,</if>
|
||
|
<if test="productId != null">product_id,</if>
|
||
|
<if test="productCode != null">product_code,</if>
|
||
2 years ago
|
<if test="productName != null">product_name,</if>
|
||
|
<if test="productSpc != null">product_spc,</if>
|
||
2 years ago
|
<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="updateBy != null">update_by,</if>
|
||
|
<if test="createTime != null">create_time,</if>
|
||
|
<if test="updateTime != null">update_time,</if>
|
||
|
<if test="isqua != null">isqua,</if>
|
||
2 years ago
|
<if test="fileId != null">file_id,</if>
|
||
2 years ago
|
|
||
|
</trim>
|
||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
<if test="rfid != null and rfid != ''">#{rfid},</if>
|
||
2 years ago
|
<if test="id != null and id != ''">#{id},</if>
|
||
2 years ago
|
<if test="factoryId != null and factoryId != ''">#{factoryId},</if>
|
||
|
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
|
||
|
<if test="workorderId != null and workorderId != ''">#{workorderId},</if>
|
||
|
<if test="workorderCode != null and workorderCode != ''">#{workorderCode},</if>
|
||
|
<if test="workorderName != null and workorderName != ''">#{workorderName},</if>
|
||
|
<if test="orderId != null and orderId != ''">#{orderId},</if>
|
||
|
<if test="orderCode != null and orderCode != ''">#{orderCode},</if>
|
||
|
<if test="machineId != null">#{machineId},</if>
|
||
|
<if test="machineCode != null">#{machineCode},</if>
|
||
2 years ago
|
<if test="machineName != null">#{machineName},</if>
|
||
2 years ago
|
<if test="badMeg != null and badMeg != ''">#{badMeg},</if>
|
||
|
<if test="productId != null">#{productId},</if>
|
||
|
<if test="productCode != null">#{productCode},</if>
|
||
2 years ago
|
<if test="productName != null">#{productName},</if>
|
||
|
<if test="productSpc != null">#{productSpc},</if>
|
||
2 years ago
|
<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="updateBy != null">#{updateBy},</if>
|
||
|
<if test="createTime != null">#{createTime},</if>
|
||
|
<if test="updateTime != null">#{updateTime},</if>
|
||
|
<if test="isqua != null">#{isqua},</if>
|
||
|
<if test="fileId != null">#{fileId},</if>
|
||
|
</trim>
|
||
|
</insert>
|
||
2 years ago
|
<insert id="insertBaseFileBatch">
|
||
|
INSERT INTO base_file(file_id, file_name, file_address, source_id, remark, create_by, create_time)
|
||
|
VALUES
|
||
|
<foreach collection="baseFiles" index="" item="baseFile" separator=",">
|
||
|
(
|
||
|
#{baseFile.fileId},
|
||
|
#{baseFile.fileName},
|
||
|
#{baseFile.fileAddress},
|
||
|
#{baseFile.sourceId},
|
||
|
#{baseFile.remark},
|
||
|
#{baseFile.createBy},
|
||
|
#{baseFile.createTime}
|
||
|
)
|
||
|
</foreach>
|
||
|
</insert>
|
||
2 years ago
|
|
||
2 years ago
|
|
||
2 years ago
|
<update id="updateQcProCheckById" parameterType="QcProCheck">
|
||
|
update qc_pro_check
|
||
|
<trim prefix="SET" suffixOverrides=",">
|
||
|
<if test="id != null and id != ''">#{id},</if>
|
||
|
<if test="rfid != null and rfid != ''">#{rfid},</if>
|
||
|
<if test="factoryId != null and factoryId != ''">#{factoryId},</if>
|
||
|
<if test="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
|
||
|
<if test="workorderId != null and workorderId != ''">#{workorderId},</if>
|
||
|
<if test="workorderCode != null and workorderCode != ''">#{workorderCode},</if>
|
||
|
<if test="workorderName != null and workorderName != ''">#{workorderName},</if>
|
||
|
<if test="orderId != null and orderId != ''">#{orderId},</if>
|
||
|
<if test="orderCode != null and orderCode != ''">#{orderCode},</if>
|
||
|
<if test="machineId != null">#{machineId},</if>
|
||
|
<if test="machineCode != null">#{machineCode},</if>
|
||
|
<if test="badMeg != null and badMeg != ''">#{badMeg},</if>
|
||
|
<if test="productId != null">#{productId},</if>
|
||
|
<if test="productCode != null">#{productCode},</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="updateBy != null">#{updateBy},</if>
|
||
|
<if test="createTime != null">#{createTime},</if>
|
||
|
<if test="updateTime != null">#{updateTime},</if>
|
||
|
<if test="isqua != null">#{isqua},</if>
|
||
|
<if test="fileId != null">#{fileId},</if>
|
||
|
</trim>
|
||
|
where id = #{id}
|
||
|
</update>
|
||
|
|
||
|
<delete id="deleteQcProCheckById" parameterType="String">
|
||
|
delete from qc_pro_check where id = #{id}
|
||
|
</delete>
|
||
|
|
||
2 years ago
|
<select id="queryImg" resultType="String">
|
||
|
SELECT
|
||
|
file_address fileAddress
|
||
|
FROM
|
||
|
base_file
|
||
|
WHERE
|
||
|
source_id=#{id}
|
||
|
</select>
|
||
|
<select id="getInfoByRfid" resultType="com.op.quality.domain.QcProCheck">
|
||
|
select
|
||
1 year ago
|
top 1
|
||
2 years ago
|
rfid.workorder_code workorderCode,
|
||
|
rfid.work_batch_code workBatchCode,
|
||
|
rfid.machine_code machineCode,
|
||
|
be.equipment_name machineName,
|
||
|
ow.product_code productCode,
|
||
|
ow.product_name productName,
|
||
2 years ago
|
ow.product_spc productSpc,
|
||
|
ow.order_code orderCode
|
||
2 years ago
|
from pro_rfid_process_detail rfid
|
||
1 year ago
|
left join base_equipment be on rfid.machine_code = be.equipment_code
|
||
|
left join pro_order_workorder ow on ow.workorder_code = rfid.workorder_code
|
||
2 years ago
|
where rfid.bind_status = '1'
|
||
|
and rfid.rfid = #{rfid}
|
||
1 year ago
|
order by rfid.create_time desc
|
||
2 years ago
|
</select>
|
||
1 year ago
|
<select id="getEquipmentList" resultType="com.op.quality.domain.QcProCheck">
|
||
|
select
|
||
|
equipment_code equipmentCode,
|
||
|
equipment_name equipmentName
|
||
|
from base_equipment
|
||
|
where equipment_type_code = #{equipmentTypeCode}
|
||
|
</select>
|
||
|
<select id="getDictList" resultType="com.op.quality.domain.QcProCheck">
|
||
|
select
|
||
|
dict_value itemCode,
|
||
|
dict_label itemName
|
||
|
from sys_dict_data
|
||
|
where dict_type = #{equipmentTypeCode}
|
||
|
</select>
|
||
2 years ago
|
</mapper>
|