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 java.io.Serializable; import java.util.Date; import lombok.Data; /** * 计划节点 * @TableName project_management_plan_node */ @TableName(value ="project_management_plan_node") @Data public class PlanNode implements Serializable { /** * */ @TableId(type = IdType.AUTO) private Long id; /** * 对应id */ private Long projectManagementPlanId; /** * 排序 */ private Integer sort; /** * 阶段名称 */ private String name; /** * 负责任ID */ private Long leaderId; /** * 负责任名称 */ private String leaderName; /** * 预计工期(天) */ private Integer estimatedDuration; /** * */ private String hourlyRate; /** * 作业内容 */ private String workContent; /** * */ private Integer isDelete; /** * */ private Date createTime; /** * */ private Date updateTime; /** * */ private String createUser; /** * */ private String updateUser; @TableField(exist = false) private static final long serialVersionUID = 1L; }