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}