gongchunyi
3 天以前 2f58ddd5085b9e51bcc4b7e1ad2e850a95e43bbd
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,86 @@
     * 
     */
    @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;
    /**
     * 负责任ID
     */
    @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(exist = false)
    private static final long serialVersionUID = 1L;