From 1ca5584d7e3200a9af65a099bd26d3593e2ba702 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 07 五月 2026 14:36:08 +0800
Subject: [PATCH] 迁移pro

---
 src/main/java/com/ruoyi/projectManagement/pojo/Plan.java |   32 ++++++++++++++++++++------------
 1 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/src/main/java/com/ruoyi/projectManagement/pojo/Plan.java b/src/main/java/com/ruoyi/projectManagement/pojo/Plan.java
index ea62dde..a45409b 100644
--- a/src/main/java/com/ruoyi/projectManagement/pojo/Plan.java
+++ b/src/main/java/com/ruoyi/projectManagement/pojo/Plan.java
@@ -7,8 +7,7 @@
 import com.baomidou.mybatisplus.annotation.TableName;
 import java.time.LocalDateTime;
 
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import io.swagger.v3.oas.annotations.media.Schema;
 import lombok.Data;
 
 /**
@@ -17,68 +16,77 @@
  */
 @TableName(value ="project_management_plan")
 @Data
-@ApiModel(description="椤圭洰绠$悊璁″垝琛�(椤圭洰绠$悊绫诲瀷)")
+@Schema(description = "椤圭洰绠$悊璁″垝琛�(椤圭洰绠$悊绫诲瀷)")
 public class Plan {
     /**
      * 
      */
     @TableId(value = "id", type = IdType.AUTO)
-    @ApiModelProperty(value="涓婚敭ID")
+    @Schema(description = "涓婚敭ID")
     private Long id;
 
     /**
      * 璁″垝鍚嶇О
      */
     @TableField(value = "name")
-    @ApiModelProperty(value="璁″垝鍚嶇О")
+    @Schema(description = "璁″垝鍚嶇О")
     private String name;
 
     /**
      * 璁″垝鎻忚堪
      */
     @TableField(value = "description")
-    @ApiModelProperty(value="璁″垝鎻忚堪")
+    @Schema(description = "璁″垝鎻忚堪")
     private String description;
 
     /**
      * 闄勪欢 ,杩涜鍒嗗壊
      */
     @TableField(value = "attachment")
-    @ApiModelProperty(value="闄勪欢")
+    @Schema(description = "闄勪欢")
     private String attachment;
 
     /**
      * 
      */
     @TableField(value = "is_delete")
-    @ApiModelProperty(value="鏄惁鍒犻櫎")
+    @Schema(description = "鏄惁鍒犻櫎")
     private Integer isDelete;
 
     /**
      * 
      */
     @TableField(value = "create_time",fill = FieldFill.INSERT)
-    @ApiModelProperty(value="鍒涘缓鏃堕棿")
+    @Schema(description = "鍒涘缓鏃堕棿")
     private LocalDateTime createTime;
 
     /**
      * 
      */
     @TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE)
-    @ApiModelProperty(value="鏇存柊鏃堕棿")
+    @Schema(description = "鏇存柊鏃堕棿")
     private LocalDateTime updateTime;
 
     /**
      * 
      */
     @TableField(value = "create_user",fill = FieldFill.INSERT)
-    @ApiModelProperty(value="鍒涘缓浜�")
+    @Schema(description = "鍒涘缓浜�")
     private Integer createUser;
 
     /**
      * 
      */
     @TableField(value = "update_user",fill = FieldFill.INSERT_UPDATE)
-    @ApiModelProperty(value="鏇存柊浜�")
+    @Schema(description = "鏇存柊浜�")
     private Integer updateUser;
+
+    @TableField(value = "create_user_name", fill = FieldFill.INSERT)
+    private String createUserName;
+
+    @TableField(value = "update_user_name", fill = FieldFill.INSERT_UPDATE)
+    private String updateUserName;
+
+    @TableField(fill = FieldFill.INSERT)
+    private Long deptId;
 }
\ No newline at end of file

--
Gitblit v1.9.3