Browse Source

增加字段、修改打包

liyuan 2 days ago
parent
commit
ebd2aa6cbb

+ 17 - 0
pom.xml

@@ -84,5 +84,22 @@
 
     </dependencies>
 
+    <build>
+        <finalName>mes-data</finalName>
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+                <version>2.7.18</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>repackage</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
 
 </project>

+ 43 - 0
src/main/java/com/gubersail/u9data/dto/TeHbbTob.java

@@ -42,6 +42,24 @@ public class TeHbbTob {
     @TableField("PATTERN")
     private String pattern;
 
+    /**
+     * 销售单号
+     */
+    @TableField("DDH")
+    private String ddh;
+
+    /**
+     * 出库单编号
+     */
+    @TableField("CKDID")
+    private String ckdId;
+
+    /**
+     * 出库时间
+     */
+    @TableField("SM_DATE")
+    private String smDate;
+
 
     public String getBarCode() {
         return barCode;
@@ -82,4 +100,29 @@ public class TeHbbTob {
     public void setPattern(String pattern) {
         this.pattern = pattern;
     }
+
+
+    public String getDdh() {
+        return ddh;
+    }
+
+    public void setDdh(String ddh) {
+        this.ddh = ddh;
+    }
+
+    public String getCkdId() {
+        return ckdId;
+    }
+
+    public void setCkdId(String ckdId) {
+        this.ckdId = ckdId;
+    }
+
+    public String getSmDate() {
+        return smDate;
+    }
+
+    public void setSmDate(String smDate) {
+        this.smDate = smDate;
+    }
 }

+ 3 - 0
src/main/resources/mapper/TeHbbTobMapper.xml

@@ -10,6 +10,9 @@
         <result property="wlMc" column="WLMC"/>
         <result property="sizeId" column="SIZEID"/>
         <result property="pattern" column="PATTERN"/>
+        <result property="ddh" column="DDH"/>
+        <result property="ckdId" column="CKDID"/>
+        <result property="smDate" column="SM_DATE"/>
     </resultMap>
 
     <select id="getAll11" resultMap="TeHbbTobResult">