From 0400f9faa256df6095a00e6facd10b2c4646cb9a Mon Sep 17 00:00:00 2001
From: zc <zyzc>
Date: 星期四, 20 十一月 2025 20:36:53 +0800
Subject: [PATCH] 入庫功能優化

---
 rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java
index 1ea353c..6277d70 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/BasContainer.java
@@ -8,6 +8,7 @@
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.vincent.rsf.server.system.entity.DictData;
 import com.vincent.rsf.server.system.service.DictDataService;
+import lombok.experimental.Accessors;
 import org.springframework.format.annotation.DateTimeFormat;
 import java.text.SimpleDateFormat;
 import java.util.Date;
@@ -24,6 +25,7 @@
 import java.util.Date;
 
 @Data
+@Accessors(chain = true)
 @TableName("man_bas_container")
 public class BasContainer implements Serializable {
 
@@ -35,6 +37,10 @@
     @ApiModelProperty(value= "id")
     @TableId(value = "id", type = IdType.AUTO)
     private Long id;
+
+
+    @ApiModelProperty("鍞竴缂栫爜")
+    private String code;
 
     /**
      * 瀹瑰櫒绫诲瀷
@@ -48,6 +54,9 @@
     @ApiModelProperty(value= "瀹瑰櫒鏉$爜绫诲瀷")
     private String codeType;
 
+    @ApiModelProperty("鏄惁婊$")
+    private Integer isHalf;
+
     /**
      * 鍙叆搴撳尯
      */
@@ -58,7 +67,6 @@
      * 鏄惁鍒犻櫎 1: 鏄�  0: 鍚�  
      */
     @ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄�  0: 鍚�  ")
-    @TableLogic
     private Integer deleted;
 
     /**

--
Gitblit v1.9.1