buhuazhen
8 天以前 646f4b255a9f51dbd2d8a377f7521608905dc743
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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;
}