From b0932123072a837e376e64de2c3417f045462cc3 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期二, 08 四月 2025 17:27:32 +0800
Subject: [PATCH] 新增PDA一键收货功能
---
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakin.java | 20 ++++----------------
1 files changed, 4 insertions(+), 16 deletions(-)
diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakin.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakin.java
index a7103f5..d5ae471 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakin.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaitPakin.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")
public class WaitPakin implements Serializable {
@@ -39,18 +42,6 @@
*/
@ApiModelProperty(value= "缂栫爜")
private String code;
-
- /**
- * 璁㈠崟ID
- */
- @ApiModelProperty(value= "璁㈠崟ID")
- private Long ansId;
-
- /**
- * 璁㈠崟缂栫爜
- */
- @ApiModelProperty(value= "璁㈠崟缂栫爜")
- private String asnCode;
/**
* 瀹瑰櫒鐮�
@@ -80,7 +71,6 @@
* 鏄惁鍒犻櫎 1: 鏄� 0: 鍚�
*/
@ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄� 0: 鍚� ")
- @TableLogic
private Integer deleted;
/**
@@ -123,10 +113,8 @@
public WaitPakin() {}
- public WaitPakin(String code,Long ansId,String asnCode,String barcode,Double anfme,Short ioStatus,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
+ public WaitPakin(String code,String barcode,Double anfme,Short ioStatus,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
this.code = code;
- this.ansId = ansId;
- this.asnCode = asnCode;
this.barcode = barcode;
this.anfme = anfme;
this.ioStatus = ioStatus;
--
Gitblit v1.9.1