From b36dfcb807af748dabdbc76a134b0667196563f6 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期二, 10 三月 2026 14:37:43 +0800
Subject: [PATCH] feat(projectManagement): 完善项目信息管理功能
---
src/main/java/com/ruoyi/projectManagement/pojo/PlanNode.java | 37 ++++++++++++++++++++++++++++---------
1 files changed, 28 insertions(+), 9 deletions(-)
diff --git a/src/main/java/com/ruoyi/projectManagement/pojo/PlanNode.java b/src/main/java/com/ruoyi/projectManagement/pojo/PlanNode.java
index 11a5252..3d9d9b1 100644
--- a/src/main/java/com/ruoyi/projectManagement/pojo/PlanNode.java
+++ b/src/main/java/com/ruoyi/projectManagement/pojo/PlanNode.java
@@ -1,10 +1,9 @@
package com.ruoyi.projectManagement.pojo;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableField;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.*;
+
import java.io.Serializable;
+import java.time.LocalDateTime;
import java.util.Date;
import lombok.Data;
@@ -19,72 +18,92 @@
*
*/
@TableId(type = IdType.AUTO)
+ @TableField(value = "id")
private Long id;
/**
* 瀵瑰簲id
*/
+ @TableField(value = "project_management_plan_id")
private Long projectManagementPlanId;
/**
* 鎺掑簭
*/
+ @TableField(value = "sort")
private Integer sort;
/**
* 闃舵鍚嶇О
*/
+ @TableField(value = "name")
private String name;
/**
* 璐熻矗浠籌D
*/
+ @TableField(value = "leader_id")
private Long leaderId;
/**
* 璐熻矗浠诲悕绉�
*/
+ @TableField(value = "leader_name")
private String leaderName;
/**
* 棰勮宸ユ湡(澶�)
*/
+ @TableField(value = "estimated_duration")
private Integer estimatedDuration;
/**
- *
+ * 宸ヤ环
*/
+ @TableField(value = "hourly_rate")
private String hourlyRate;
/**
* 浣滀笟鍐呭
*/
+ @TableField(value = "work_content")
private String workContent;
/**
*
*/
+ @TableField(value = "is_delete")
private Integer isDelete;
/**
*
*/
- private Date createTime;
+ @TableField(value = "create_time",fill = FieldFill.INSERT)
+ private LocalDateTime createTime;
/**
*
*/
- private Date updateTime;
+ @TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE)
+ private LocalDateTime updateTime;
/**
*
*/
- private String createUser;
+ @TableField(value = "create_user",fill = FieldFill.INSERT)
+ private Integer createUser;
/**
*
*/
- private String updateUser;
+ @TableField(value = "update_user",fill = FieldFill.INSERT_UPDATE)
+ 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(exist = false)
private static final long serialVersionUID = 1L;
--
Gitblit v1.9.3