From 4149ed5486b28fbc9423fc7b4d54afdc1c5ab0f5 Mon Sep 17 00:00:00 2001
From: fengyuan_yang <1976974459@qq.com>
Date: Sat, 7 Jun 2025 10:57:41 +0800
Subject: [PATCH] =?UTF-8?q?2025-06-07=20=E7=AC=AC=E4=BA=8C=E6=9D=A1?=
=?UTF-8?q?=E7=9A=84=E6=B2=B9=E5=A2=A8=E9=85=8D=E6=96=B9=E6=B2=A1=E6=9C=89?=
=?UTF-8?q?=E5=8D=B0=E5=88=B7=E9=80=9F=E5=BA=A6=20=E6=9F=94=E6=9D=BF?=
=?UTF-8?q?=E5=8D=B0=E5=88=B7=20flexo=20=E5=8A=A0=E5=88=B0=E7=BD=91?=
=?UTF-8?q?=E7=BA=B9=E8=BE=8A=E5=90=8E=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../entity/PlmBmPrintFlexoColor.java | 10 ++++++++++
.../TechnicalSpecificationMapper.xml | 16 ++++++++++------
2 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/src/main/java/com/spring/modules/sampleManagement/entity/PlmBmPrintFlexoColor.java b/src/main/java/com/spring/modules/sampleManagement/entity/PlmBmPrintFlexoColor.java
index 5195b370..2d8be469 100644
--- a/src/main/java/com/spring/modules/sampleManagement/entity/PlmBmPrintFlexoColor.java
+++ b/src/main/java/com/spring/modules/sampleManagement/entity/PlmBmPrintFlexoColor.java
@@ -95,6 +95,16 @@ public class PlmBmPrintFlexoColor {
private String resourceNo;
+ private String speed;
+
+ public String getSpeed() {
+ return speed;
+ }
+
+ public void setSpeed(String speed) {
+ this.speed = speed;
+ }
+
public String getResourceNo() {
return resourceNo;
}
diff --git a/src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml b/src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml
index 2d5d5d32..f78fa2d7 100644
--- a/src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml
+++ b/src/main/resources/mapper/sampleManagement/TechnicalSpecificationMapper.xml
@@ -2011,7 +2011,8 @@
pressure,
updateDate,
updateBy,
- resource_no
+ resource_no,
+ speed
from plm_bm_printFlexoColor
where site = #{site} and codeNo = #{codeNo}
order by printSide desc, [order]
@@ -2029,20 +2030,22 @@
insert into plm_bm_printFlexoColor
(site, codeNo, printSide, [order], colorReference, inkCode, colorMatch, lpi,
- bcm, openFlag, gallus, markAndy, hexiang, temperature, pressure, updateDate, updateBy, remark, resource_no)
+ bcm, openFlag, gallus, markAndy, hexiang, temperature, pressure, updateDate, updateBy, remark, resource_no, speed)
values
(#{site}, #{codeNo}, #{printSide}, #{order}, #{colorReference}, #{inkCode}, #{colorMatch}, #{lpi},
- #{bcm}, #{openFlag}, #{gallus}, #{markAndy}, #{hexiang}, #{temperature}, #{pressure}, GetDate(), #{updateBy}, #{remark}, #{resourceNo})
+ #{bcm}, #{openFlag}, #{gallus}, #{markAndy}, #{hexiang}, #{temperature}, #{pressure}, GetDate(), #{updateBy}, #{remark}, #{resourceNo}, #{speed})
insert into plm_bm_printFlexoColor
(site, codeNo, printSide, [order], colorReference, inkCode, colorMatch, lpi,
- bcm, openFlag, gallus, markAndy, hexiang, temperature, pressure, updateDate, updateBy, remark, resource_no)
+ bcm, openFlag, gallus, markAndy, hexiang, temperature, pressure, updateDate,
+ updateBy, remark, resource_no, speed)
values
(#{item.site}, #{item.codeNo}, #{item.printSide}, #{item.order}, #{item.colorReference}, #{item.inkCode}, #{item.colorMatch}, #{item.lpi},
- #{item.bcm}, #{item.openFlag}, #{item.gallus}, #{item.markAndy}, #{item.hexiang}, #{item.temperature}, #{item.pressure}, GetDate(), #{item.updateBy}, #{item.remark}, #{item.resourceNo})
+ #{item.bcm}, #{item.openFlag}, #{item.gallus}, #{item.markAndy}, #{item.hexiang}, #{item.temperature}, #{item.pressure}, GetDate(),
+ #{item.updateBy}, #{item.remark}, #{item.resourceNo}, #{item.speed})
@@ -2064,7 +2067,8 @@
updateDate = GetDate(),
updateBy = #{updateBy},
remark = #{remark},
- resource_no = #{resourceNo}
+ resource_no = #{resourceNo},
+ speed = #{speed}
where id = #{id}