From 40d9cd510741a098bd52cbe22a5f9e5528f45abc Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期三, 23 四月 2025 17:09:01 +0800
Subject: [PATCH] # 新增  1. 通过单据新增出库单功能  2. 新增生成出库单接口

---
 rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakinItem.java |   34 +++++++++++++++++++++++++++++++++-
 1 files changed, 33 insertions(+), 1 deletions(-)

diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakinItem.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakinItem.java
index 0ff1132..54c4503 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakinItem.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakinItem.java
@@ -3,6 +3,8 @@
 import com.baomidou.mybatisplus.annotation.TableLogic;
 import java.text.SimpleDateFormat;
 import java.util.Date;
+
+import lombok.experimental.Accessors;
 import org.springframework.format.annotation.DateTimeFormat;
 import java.text.SimpleDateFormat;
 import java.util.Date;
@@ -22,6 +24,7 @@
 import java.util.Date;
 
 @Data
+@Accessors(chain = true)
 @TableName("man_wait_pakin_item")
 public class WaitPakinItem implements Serializable {
 
@@ -39,6 +42,36 @@
      */
     @ApiModelProperty(value= "涓诲崟ID")
     private Long pakinId;
+
+    @ApiModelProperty("璁㈠崟绫诲瀷")
+    private String type;
+
+    @ApiModelProperty("涓氬姟绫诲瀷")
+    private Short wkType;
+
+    /**
+     * 璁㈠崟ID
+     */
+    @ApiModelProperty(value= "璁㈠崟ID")
+    private Long asnId;
+
+    /**
+     * 璁㈠崟缂栫爜
+     */
+    @ApiModelProperty(value= "璁㈠崟缂栫爜")
+    private String asnCode;
+
+    /**
+     * 璁㈠崟鏄庣粏ID
+     */
+    @ApiModelProperty("璁㈠崟鏄庣粏ID")
+    private Long asnItemId;
+
+    /**
+     * 璺熻釜鐮�
+     */
+    @ApiModelProperty("鐗╂枡璺熻釜鐮�")
+    private String trackCode;
 
     /**
      * 鐗╂枡鍚嶇О
@@ -104,7 +137,6 @@
      * 鏄惁鍒犻櫎 1: 鏄�  0: 鍚�  
      */
     @ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄�  0: 鍚�  ")
-    @TableLogic
     private Integer deleted;
 
     /**

--
Gitblit v1.9.1