From 02a98973275c0c792e5fefdacdbea272b053f886 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期二, 28 四月 2026 11:06:00 +0800
Subject: [PATCH] feat:1.补料和补料记录 2.退料

---
 src/main/java/com/ruoyi/basic/pojo/CustomerPrivatePool.java |   25 ++++++++++++-------------
 1 files changed, 12 insertions(+), 13 deletions(-)

diff --git a/src/main/java/com/ruoyi/basic/pojo/CustomerPrivatePool.java b/src/main/java/com/ruoyi/basic/pojo/CustomerPrivatePool.java
index edf88d7..86dfc5a 100644
--- a/src/main/java/com/ruoyi/basic/pojo/CustomerPrivatePool.java
+++ b/src/main/java/com/ruoyi/basic/pojo/CustomerPrivatePool.java
@@ -9,8 +9,7 @@
 import java.time.LocalDateTime;
 
 import com.ruoyi.framework.aspectj.lang.annotation.Excel;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import io.swagger.v3.oas.annotations.media.Schema;
 import lombok.Data;
 import lombok.Getter;
 import lombok.Setter;
@@ -25,44 +24,44 @@
  */
 @Data
 @TableName("customer_private_pool")
-@ApiModel(value = "CustomerPrivatePool瀵硅薄", description = "")
+@Schema(name = "CustomerPrivatePool瀵硅薄", description = "")
 public class CustomerPrivatePool implements Serializable {
 
     private static final long serialVersionUID = 1L;
 
-    @ApiModelProperty("涓婚敭id")
+    @Schema(description = "涓婚敭id")
     @TableId(value = "id", type = IdType.AUTO)
     private Long id;
 
-    @ApiModelProperty("瀹㈡埛id")
+    @Schema(description = "瀹㈡埛id")
     private Long customerId;
 
-    @ApiModelProperty("缁戝畾浜篿d")
+    @Schema(description = "缁戝畾浜篿d")
     private Long boundId;
 
-    @ApiModelProperty("鍒涘缓浜�")
+    @Schema(description = "鍒涘缓浜�")
     @TableField(fill = FieldFill.INSERT)
     private Integer createUser;
 
-    @ApiModelProperty("鏇存柊浜�")
+    @Schema(description = "鏇存柊浜�")
     @TableField(fill = FieldFill.INSERT_UPDATE)
     private Integer updateUser;
 
-    @ApiModelProperty("鍒涘缓鏃堕棿")
+    @Schema(description = "鍒涘缓鏃堕棿")
     @TableField(fill = FieldFill.INSERT)
     private LocalDateTime createTime;
 
-    @ApiModelProperty("鏇存柊鏃堕棿")
+    @Schema(description = "鏇存柊鏃堕棿")
     @TableField(fill = FieldFill.INSERT_UPDATE)
     private LocalDateTime updateTime;
 
-    @ApiModelProperty("绫诲瀷鍖哄垎鍏捣瀹㈡埛鍜岀娴峰鎴� 榛樿鏄娴峰鎴�0 鍏捣1")
+    @Schema(description = "绫诲瀷鍖哄垎鍏捣瀹㈡埛鍜岀娴峰鎴� 榛樿鏄娴峰鎴�0 鍏捣1")
     private Long type;
 
-    @ApiModelProperty("閮ㄩ棬id")
+    @Schema(description = "閮ㄩ棬id")
     @TableField(fill = FieldFill.INSERT)
     private Long deptId;
 
-    @ApiModelProperty("鍒犻櫎鏍囪瘑 榛樿0 1宸茬粡鍒犻櫎")
+    @Schema(description = "鍒犻櫎鏍囪瘑 榛樿0 1宸茬粡鍒犻櫎")
     private Integer DeleteFlag;
 }

--
Gitblit v1.9.3