|
|
|
<?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.QcCheckTaskIncomeMapper">
|
|
|
|
|
|
|
|
<resultMap type="QcCheckTaskIncome" id="QcCheckTaskIncomeResult">
|
|
|
|
<result property="recordId" column="record_id" />
|
|
|
|
<result property="checkNo" column="check_no" />
|
|
|
|
<result property="incomeBatchNo" column="income_batch_no" />
|
|
|
|
<result property="orderNo" column="order_no" />
|
|
|
|
<result property="materialCode" column="material_code" />
|
|
|
|
<result property="materialName" column="material_name" />
|
|
|
|
<result property="quality" column="quality" />
|
|
|
|
<result property="noOkQuality" column="noOk_quality" />
|
|
|
|
<result property="unit" column="unit" />
|
|
|
|
<result property="supplierCode" column="supplier_code" />
|
|
|
|
<result property="supplierName" column="supplier_name" />
|
|
|
|
<result property="incomeTime" column="income_time" />
|
|
|
|
<result property="checkLoc" column="check_loc" />
|
|
|
|
<result property="checkStatus" column="check_status" />
|
|
|
|
<result property="checkManCode" column="check_man_code" />
|
|
|
|
<result property="checkManName" column="check_man_name" />
|
|
|
|
<result property="checkTime" column="check_time" />
|
|
|
|
<result property="checkResult" column="check_result" />
|
|
|
|
<result property="status" column="status" />
|
|
|
|
<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="factoryCode" column="factory_code" />
|
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
|
<result property="checkType" column="check_type" />
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="selectQcCheckTaskIncomeVo">
|
|
|
|
select record_id, check_no, income_batch_no, order_no, material_code, material_name, quality, unit,
|
|
|
|
supplier_code, supplier_name, income_time, check_loc, check_status, check_man_code,
|
|
|
|
check_man_name, check_time, check_result, status, attr1, attr2, attr3, attr4, create_by,
|
|
|
|
create_time, update_by, update_time, factory_code, del_flag , check_type,noOk_quality
|
|
|
|
from qc_check_task
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
<select id="selectQcCheckTaskIncomeList" parameterType="QcCheckTaskIncome" resultMap="QcCheckTaskIncomeResult">
|
|
|
|
select qct.record_id, qct.check_no, qct.income_batch_no,
|
|
|
|
qct.order_no, qct.material_code, qct.material_name, qct.quality, qct.unit,
|
|
|
|
qct.supplier_code, qct.supplier_name, qct.income_time, qct.check_loc, qct.check_status,
|
|
|
|
qct.check_man_code, qct.check_man_name,qct.check_time, qct.check_result, qct.status,
|
|
|
|
qct.create_by,qct.create_time, qct.update_by, qct.update_time,qct.check_type,qct.noOk_quality,
|
|
|
|
q.type_code
|
|
|
|
from qc_check_task qct
|
|
|
|
left join qc_check_type q on q.id = qct.check_type
|
|
|
|
<where>
|
|
|
|
<if test="checkNo != null and checkNo != ''"> and qct.check_no = #{checkNo}</if>
|
|
|
|
<if test="incomeBatchNo != null and incomeBatchNo != ''"> and qct.income_batch_no = #{incomeBatchNo}</if>
|
|
|
|
<if test="orderNo != null and orderNo != ''"> and qct.order_no = #{orderNo}</if>
|
|
|
|
<if test="materialCode != null and materialCode != ''"> and qct.material_code = #{materialCode}</if>
|
|
|
|
<if test="materialName != null and materialName != ''"> and qct.material_name like concat('%', #{materialName}, '%')</if>
|
|
|
|
<if test="supplierCode != null and supplierCode != ''"> and qct.supplier_code = #{supplierCode}</if>
|
|
|
|
<if test="supplierName != null and supplierName != ''"> and qct.supplier_name like concat('%', #{supplierName}, '%')</if>
|
|
|
|
<if test="incomeTime != null "> and qct.income_time = #{incomeTime}</if>
|
|
|
|
<if test="checkLoc != null and checkLoc != ''"> and qct.check_loc = #{checkLoc}</if>
|
|
|
|
<if test="checkStatus != null and checkStatus != ''"> and qct.check_status = #{checkStatus}</if>
|
|
|
|
<if test="checkManCode != null and checkManCode != ''"> and qct.check_man_code = #{checkManCode}</if>
|
|
|
|
<if test="checkManName != null and checkManName != ''"> and qct.check_man_name like concat('%', #{checkManName}, '%')</if>
|
|
|
|
<if test="checkResult != null and checkResult != ''"> and qct.check_result = #{checkResult}</if>
|
|
|
|
<if test="status != null and status != ''"> and qct.status = #{status}</if>
|
|
|
|
<if test="delFlag != null and delFlag != ''"> and qct.del_flag = #{delFlag}</if>
|
|
|
|
<if test="factoryCode != null and factoryCode != ''"> and qct.factory_code = #{factoryCode}</if>
|
|
|
|
<if test="incomeTimeStart != null "> and CONVERT(varchar(30),qct.income_time, 120) >= #{incomeTimeStart}</if>
|
|
|
|
<if test="incomeTimeEnd != null "> and #{incomeTimeEnd} > CONVERT(varchar(30),qct.income_time, 120)</if>
|
|
|
|
<if test="checkTimeStart != null "> and CONVERT(varchar(30),qct.check_time, 120) >= #{checkTimeStart}</if>
|
|
|
|
<if test="checkTimeEnd != null "> and #{checkTimeEnd} > CONVERT(varchar(30),qct.check_time, 120)</if>
|
|
|
|
<if test="checkType != null "> and qct.check_type = #{checkType} </if>
|
|
|
|
<if test="typeCode != null "> and q.type_code = #{typeCode} </if>
|
|
|
|
</where>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select id="selectQcCheckTaskIncomeByRecordId" parameterType="String" resultMap="QcCheckTaskIncomeResult">
|
|
|
|
<include refid="selectQcCheckTaskIncomeVo"/>
|
|
|
|
where record_id = #{recordId}
|
|
|
|
</select>
|
|
|
|
<select id="getQcListBom" resultType="com.op.quality.domain.QcBomComponent">
|
|
|
|
select product_code component,product_desc_zh componentName
|
|
|
|
from base_product
|
|
|
|
where del_flag = '0'
|
|
|
|
<if test="component != null and component != ''"> and product_code like concat('%', #{component}, '%')</if>
|
|
|
|
<if test="componentName != null and componentName != ''"> and product_desc_zh like concat('%', #{componentName}, '%')</if>
|
|
|
|
</select>
|
|
|
|
<select id="getQcListSupplier" resultType="com.op.quality.domain.QcSupplier">
|
|
|
|
select supplier_code supplierCode,
|
|
|
|
zh_desc supplierName,
|
|
|
|
address,
|
|
|
|
contact_phone contactPhone
|
|
|
|
from base_supplier where active_flag = '1' and del_flag ='0'
|
|
|
|
<if test="supplierCode != null and supplierCode != ''"> and supplier_code like concat('%', #{supplierCode}, '%')</if>
|
|
|
|
<if test="supplierName != null and supplierName != ''"> and zh_desc like concat('%', #{supplierName}, '%')</if>
|
|
|
|
</select>
|
|
|
|
<select id="getQcListUser" resultType="com.op.system.api.domain.SysUser">
|
|
|
|
select user_id userId,
|
|
|
|
user_name userCode,
|
|
|
|
nick_name userName,
|
|
|
|
phonenumber
|
|
|
|
from sys_user where del_flag = '0' and status = '0'
|
|
|
|
<if test="userCode != null and userCode != ''"> and user_name like concat('%', #{userCode}, '%')</if>
|
|
|
|
<if test="userName != null and userName != ''"> and nick_name like concat('%', #{userName}, '%')</if>
|
|
|
|
</select>
|
|
|
|
<select id="getTodayMaxNum" resultType="java.lang.Integer">
|
|
|
|
select count(0)+1
|
|
|
|
from qc_check_task
|
|
|
|
where CONVERT(varchar(10),create_time, 120) = CONVERT(varchar(10),GETDATE(), 120)
|
|
|
|
</select>
|
|
|
|
<select id="getCkeckProjectList" resultType="com.op.quality.domain.QcCheckTaskDetail">
|
|
|
|
select td.record_id recordId,
|
|
|
|
td.project_id projectId,
|
|
|
|
td.project_no projectNo,
|
|
|
|
td.rule_name ruleName,
|
|
|
|
td.property_code propertyCode,
|
|
|
|
td.check_mode checkMode,
|
|
|
|
td.check_tool checkTool,
|
|
|
|
td.unit_code unitCode,
|
|
|
|
td.check_standard checkStandard,
|
|
|
|
td.actual_value actualValue,
|
|
|
|
td.status,
|
|
|
|
td.remark,
|
|
|
|
td.create_by createBy,
|
|
|
|
td.create_time createTime,
|
|
|
|
td.update_by updateBy,
|
|
|
|
td.update_time updateTime,
|
|
|
|
td.belong_to belongTo,
|
|
|
|
qctp.upper_diff upperDiff,
|
|
|
|
qctp.down_diff downDiff,
|
|
|
|
qctp.sample
|
|
|
|
from qc_check_task_detail td
|
|
|
|
left join qc_check_type_project qctp on td.type_project_id = qctp.id
|
|
|
|
where td.belong_to = #{belongTo} and td.del_flag='0' and qctp.del_flag = '0'
|
|
|
|
</select>
|
|
|
|
<select id="getQcUnitList" resultType="com.op.system.api.domain.SysDictData">
|
|
|
|
select dict_label dictLabel,
|
|
|
|
dict_value dictValue
|
|
|
|
from sys_dict_data
|
|
|
|
where dict_type = 'unit'
|
|
|
|
and status = '0'
|
|
|
|
</select>
|
|
|
|
<select id="getBatchList" resultType="com.op.quality.domain.QcCheckTaskIncome">
|
|
|
|
select powb.batch_id batchId,
|
|
|
|
powb.batch_code batchCode
|
|
|
|
from pro_order_workorder_batch powb
|
|
|
|
left join pro_order_workorder pow on powb.workorder_id = pow.workorder_id
|
|
|
|
where powb.del_flag = '0' and pow.del_flag = '0'
|
|
|
|
and pow.workorder_code = #{workorderCode}
|
|
|
|
</select>
|
|
|
|
<select id="getTypeCode" resultType="java.lang.String">
|
|
|
|
select type_code from qc_check_type where order_code = #{checkType}
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<insert id="insertQcCheckTaskIncome" parameterType="QcCheckTaskIncome">
|
|
|
|
insert into qc_check_task
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="recordId != null">record_id,</if>
|
|
|
|
<if test="checkNo != null">check_no,</if>
|
|
|
|
<if test="incomeBatchNo != null">income_batch_no,</if>
|
|
|
|
<if test="orderNo != null">order_no,</if>
|
|
|
|
<if test="materialCode != null">material_code,</if>
|
|
|
|
<if test="materialName != null">material_name,</if>
|
|
|
|
<if test="quality != null">quality,</if>
|
|
|
|
<if test="noOkQuality != null">noOk_quality,</if>
|
|
|
|
<if test="unit != null">unit,</if>
|
|
|
|
<if test="supplierCode != null">supplier_code,</if>
|
|
|
|
<if test="supplierName != null">supplier_name,</if>
|
|
|
|
<if test="incomeTime != null">income_time,</if>
|
|
|
|
<if test="checkLoc != null">check_loc,</if>
|
|
|
|
<if test="checkStatus != null">check_status,</if>
|
|
|
|
<if test="checkManCode != null">check_man_code,</if>
|
|
|
|
<if test="checkManName != null">check_man_name,</if>
|
|
|
|
<if test="checkTime != null">check_time,</if>
|
|
|
|
<if test="checkResult != null">check_result,</if>
|
|
|
|
<if test="status != null">status,</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="factoryCode != null and factoryCode != ''">factory_code,</if>
|
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
|
<if test="checkType != null">check_type,</if>
|
|
|
|
<if test="typeCode != null">type_code,</if>
|
|
|
|
<if test="sampleQuality != null">sample_quality,</if>
|
|
|
|
<if test="orderType != null">order_type,</if>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="recordId != null">#{recordId},</if>
|
|
|
|
<if test="checkNo != null">#{checkNo},</if>
|
|
|
|
<if test="incomeBatchNo != null">#{incomeBatchNo},</if>
|
|
|
|
<if test="orderNo != null">#{orderNo},</if>
|
|
|
|
<if test="materialCode != null">#{materialCode},</if>
|
|
|
|
<if test="materialName != null">#{materialName},</if>
|
|
|
|
<if test="quality != null">#{quality},</if>
|
|
|
|
<if test="noOkQuality != null">#{noOkQuality},</if>
|
|
|
|
<if test="unit != null">#{unit},</if>
|
|
|
|
<if test="supplierCode != null">#{supplierCode},</if>
|
|
|
|
<if test="supplierName != null">#{supplierName},</if>
|
|
|
|
<if test="incomeTime != null">#{incomeTime},</if>
|
|
|
|
<if test="checkLoc != null">#{checkLoc},</if>
|
|
|
|
<if test="checkStatus != null">#{checkStatus},</if>
|
|
|
|
<if test="checkManCode != null">#{checkManCode},</if>
|
|
|
|
<if test="checkManName != null">#{checkManName},</if>
|
|
|
|
<if test="checkTime != null">#{checkTime},</if>
|
|
|
|
<if test="checkResult != null">#{checkResult},</if>
|
|
|
|
<if test="status != null">#{status},</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="factoryCode != null and factoryCode != ''">#{factoryCode},</if>
|
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
|
<if test="checkType != null">#{checkType},</if>
|
|
|
|
<if test="typeCode != null">#{typeCode},</if>
|
|
|
|
<if test="sampleQuality != null">#{sampleQuality},</if>
|
|
|
|
<if test="orderType != null">#{orderType},</if>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateQcCheckTaskIncome" parameterType="QcCheckTaskIncome">
|
|
|
|
update qc_check_task
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
<if test="checkNo != null">check_no = #{checkNo},</if>
|
|
|
|
<if test="incomeBatchNo != null">income_batch_no = #{incomeBatchNo},</if>
|
|
|
|
<if test="orderNo != null">order_no = #{orderNo},</if>
|
|
|
|
<if test="materialCode != null">material_code = #{materialCode},</if>
|
|
|
|
<if test="materialName != null">material_name = #{materialName},</if>
|
|
|
|
<if test="quality != null">quality = #{quality},</if>
|
|
|
|
<if test="noOkQuality != null">noOk_quality = #{noOkQuality},</if>
|
|
|
|
<if test="unit != null">unit = #{unit},</if>
|
|
|
|
<if test="supplierCode != null">supplier_code = #{supplierCode},</if>
|
|
|
|
<if test="supplierName != null">supplier_name = #{supplierName},</if>
|
|
|
|
<if test="incomeTime != null">income_time = #{incomeTime},</if>
|
|
|
|
<if test="checkLoc != null">check_loc = #{checkLoc},</if>
|
|
|
|
<if test="checkStatus != null">check_status = #{checkStatus},</if>
|
|
|
|
<if test="checkManCode != null">check_man_code = #{checkManCode},</if>
|
|
|
|
<if test="checkManName != null">check_man_name = #{checkManName},</if>
|
|
|
|
<if test="checkTime != null">check_time = #{checkTime},</if>
|
|
|
|
<if test="checkResult != null">check_result = #{checkResult},</if>
|
|
|
|
<if test="status != null">status = #{status},</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="factoryCode != null and factoryCode != ''">factory_code = #{factoryCode},</if>
|
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
|
<if test="checkType != null">check_type = #{checkType},</if>
|
|
|
|
<if test="sampleQuality != null">sample_quality = #{sampleQuality},</if>
|
|
|
|
</trim>
|
|
|
|
where record_id = #{recordId}
|
|
|
|
</update>
|
|
|
|
<update id="updateQcCheckTask">
|
|
|
|
update qc_check_task
|
|
|
|
set
|
|
|
|
check_status = #{checkStatus},
|
|
|
|
check_man_code = #{updateBy},
|
|
|
|
<if test="checkTime != null">check_time = #{checkTime},</if>
|
|
|
|
<if test="sampleQuality != null">sample_quality = #{sampleQuality},</if>
|
|
|
|
<if test="noOkQuality != null">noOk_quality = #{noOkQuality},</if>
|
|
|
|
<if test="aNoOkquality != null">aNoOkquality = #{aNoOkquality},</if>
|
|
|
|
<if test="bNoOkquality != null">bNoOkquality = #{bNoOkquality},</if>
|
|
|
|
<if test="cNoOkquality != null">cNoOkquality = #{cNoOkquality},</if>
|
|
|
|
<if test="incomeBatchNo != null">income_batch_no = #{incomeBatchNo},</if>
|
|
|
|
check_result = #{checkResult},
|
|
|
|
update_by = #{updateBy},
|
|
|
|
update_time = #{updateTime}
|
|
|
|
where record_id = #{recordId}
|
|
|
|
</update>
|
|
|
|
<update id="updateQcCheckTaskDetails">
|
|
|
|
<foreach collection="list" item="item" separator=";">
|
|
|
|
update qc_check_task_detail
|
|
|
|
set
|
|
|
|
actual_value = #{item.actualValue},
|
|
|
|
status = #{item.status},
|
|
|
|
update_by = #{item.updateBy},
|
|
|
|
update_time = #{item.updateTime}
|
|
|
|
where
|
|
|
|
record_id = #{item.recordId}
|
|
|
|
</foreach>
|
|
|
|
</update>
|
|
|
|
|
|
|
|
<delete id="deleteQcCheckTaskIncomeByRecordId" parameterType="String">
|
|
|
|
delete from qc_check_task where record_id = #{recordId}
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
<delete id="deleteQcCheckTaskIncomeByRecordIds" parameterType="String">
|
|
|
|
delete from qc_check_task where record_id in
|
|
|
|
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
|
|
|
#{recordId}
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
<select id="selectQcCheckTaskCheckNoByRecordIds" parameterType="String" resultMap="QcCheckTaskIncomeResult">
|
|
|
|
select check_no from qc_check_task where record_id in
|
|
|
|
<foreach item="recordId" collection="array" open="(" separator="," close=")">
|
|
|
|
#{recordId}
|
|
|
|
</foreach>
|
|
|
|
</select>
|
|
|
|
<select id="getUserByMaterial" resultType="com.op.system.api.domain.quality.QcUserMaterialDTO">
|
|
|
|
select user_code userCode,
|
|
|
|
user_name userName
|
|
|
|
from qc_user_material where material_code = #{materialCode}
|
|
|
|
</select>
|
|
|
|
<select id="getCkeckDefectList" resultType="com.op.quality.domain.QcCheckTaskDefect">
|
|
|
|
select
|
|
|
|
qctd.record_id recordId,
|
|
|
|
qctd.defect_code defectCode,
|
|
|
|
qctd.defect_subclass defectSubclass,
|
|
|
|
qctd.noOk_quality noOkQuality
|
|
|
|
from qc_check_task_defect qctd
|
|
|
|
where qctd.del_flag = '0' and qctd.belong_to = #{belongTo}
|
|
|
|
order by qctd.defect_code
|
|
|
|
</select>
|
|
|
|
<select id="getDefectType" resultType="com.op.quality.domain.QcCheckTaskDefect">
|
|
|
|
select
|
|
|
|
defect_code defectCode,
|
|
|
|
defect_subclass defectSubclass
|
|
|
|
from qc_defect_type qdt
|
|
|
|
left join qc_check_type qct on qdt.defect_type = qct.type_code
|
|
|
|
where qct.order_code = #{checkType} and qdt.del_flag = '0'
|
|
|
|
order by qdt.defect_code
|
|
|
|
</select>
|
|
|
|
<insert id="addCheckUsers">
|
|
|
|
insert into qc_check_task_user(
|
|
|
|
record_id,belong_to,check_no,
|
|
|
|
check_man_code,check_man_name,
|
|
|
|
create_by,create_time,factory_code
|
|
|
|
) values
|
|
|
|
<foreach item="item" index="index" collection="list" separator=",">
|
|
|
|
(
|
|
|
|
#{item.id},#{item.belongTo},#{item.checkNo},
|
|
|
|
#{item.userCode},#{item.userName},
|
|
|
|
#{item.createBy},#{item.createTime},#{item.factoryCode}
|
|
|
|
)
|
|
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
<insert id="addQcCheckTaskDefects">
|
|
|
|
insert into qc_check_task_defect(
|
|
|
|
record_id,belong_to,
|
|
|
|
defect_code,defect_subclass,
|
|
|
|
noOk_quality,
|
|
|
|
create_by,create_time,factory_code
|
|
|
|
) values
|
|
|
|
<foreach item="item" index="index" collection="list" separator=",">
|
|
|
|
(
|
|
|
|
#{item.recordId},#{item.belongTo},
|
|
|
|
#{item.defectCode},#{item.defectSubclass},
|
|
|
|
#{item.noOkQuality},
|
|
|
|
#{item.createBy},#{item.createTime},#{item.factoryCode}
|
|
|
|
)
|
|
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
</mapper>
|