From 8af39d20413790b72658675f3182714cc59011b3 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期六, 24 八月 2024 17:37:31 +0800
Subject: [PATCH] 工单检测生成优化、海康阈值校验优化

---
 ycl-server/src/main/resources/mapper/zgyw/WorkOrderYwConditionRecordMapper.xml |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/ycl-server/src/main/resources/mapper/zgyw/WorkOrderYwConditionRecordMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/WorkOrderYwConditionRecordMapper.xml
index 24fc1cd..940786c 100644
--- a/ycl-server/src/main/resources/mapper/zgyw/WorkOrderYwConditionRecordMapper.xml
+++ b/ycl-server/src/main/resources/mapper/zgyw/WorkOrderYwConditionRecordMapper.xml
@@ -15,8 +15,16 @@
     <select id="selectYwConditionByYwId" resultMap="BaseResultMap">
         SELECT yw.id, yw.commit_user, yw.yw_condition, yw.yw_proofMaterials, yw.create_time, yw.sys_msg, su.nick_name
         FROM t_work_order_yw_condition_record yw
-                 INNER JOIN sys_user su ON yw.commit_user = su.user_id AND yw.deleted = 0 AND yw.work_order_id = #{workOrderId}
+                 INNER JOIN sys_user su ON yw.commit_user = su.user_id AND yw.deleted = 0 AND yw.work_order_no = #{workOrderId}
         ORDER BY yw.create_time DESC
     </select>
 
+    <insert id="insertMany">
+        insert into t_work_order_yw_condition_record (work_order_no, commit_user, yw_condition, deleted, create_time)
+        values
+        <foreach collection="ywRecordList" item="item" separator=",">
+            (#{item.workOrderNo}, #{item.commitUser}, #{item.ywCondition}, 0, now())
+        </foreach>
+    </insert>
+
 </mapper>

--
Gitblit v1.8.0