songhuangfeng123
2022-08-17 8702c17288c16ec3d6760326e85cae37bbb10af8
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package com.gkhy.safePlatform.targetDuty.entity;
 
import java.sql.Timestamp;
import com.gkhy.safePlatform.targetDuty.entity.BaseDomain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.fasterxml.jackson.annotation.JsonFormat;
 
/**
 * 目标指标分解详情(TargetDivideDetail)表实体类
 *
 * @author xurui
 * @since 2022-08-17 11:22:35
 */
@SuppressWarnings("serial")
@TableName("target_divide_detail")
public class TargetDivideDetail extends BaseDomain {
    
    
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
                //关联的目标指标/外键
            private Long targetId;
        
    public Long getTargetId() {
        return targetId;
    }
 
    public void setTargetId(Long targetId) {
        this.targetId = targetId;
    }
                //考核指标值
            private String value;
        
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
                //制定日期
            @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
        private Timestamp makeDate;
        
    public Timestamp getMakeDate() {
        return makeDate;
    }
 
    public void setMakeDate(Timestamp makeDate) {
        this.makeDate = makeDate;
    }
                //责任部门/外键
            private Long dutyDepartmentId;
        
    public Long getDutyDepartmentId() {
        return dutyDepartmentId;
    }
 
    public void setDutyDepartmentId(Long dutyDepartmentId) {
        this.dutyDepartmentId = dutyDepartmentId;
    }
                //制定人部门/外键
            private Long makerDepartmentId;
        
    public Long getMakerDepartmentId() {
        return makerDepartmentId;
    }
 
    public void setMakerDepartmentId(Long makerDepartmentId) {
        this.makerDepartmentId = makerDepartmentId;
    }
                //上报人/外键
            private Long commitPersonId;
        
    public Long getCommitPersonId() {
        return commitPersonId;
    }
 
    public void setCommitPersonId(Long commitPersonId) {
        this.commitPersonId = commitPersonId;
    }
                //上报人名称
            private String commitPersonName;
        
    public String getCommitPersonName() {
        return commitPersonName;
    }
 
    public void setCommitPersonName(String commitPersonName) {
        this.commitPersonName = commitPersonName;
    }
                //目标分类/外键
            private Long targetTypeId;
        
    public Long getTargetTypeId() {
        return targetTypeId;
    }
 
    public void setTargetTypeId(Long targetTypeId) {
        this.targetTypeId = targetTypeId;
    }
                //责任人/外键
            private Long dutyPersonId;
        
    public Long getDutyPersonId() {
        return dutyPersonId;
    }
 
    public void setDutyPersonId(Long dutyPersonId) {
        this.dutyPersonId = dutyPersonId;
    }
                //责任人名称
            private String dutyPersonName;
        
    public String getDutyPersonName() {
        return dutyPersonName;
    }
 
    public void setDutyPersonName(String dutyPersonName) {
        this.dutyPersonName = dutyPersonName;
    }
                //计划措施
            private String planDesc;
        
    public String getPlanDesc() {
        return planDesc;
    }
 
    public void setPlanDesc(String planDesc) {
        this.planDesc = planDesc;
    }
            
}