songhuangfeng123
2022-08-18 233fb69fa9d1694e97337d74fa3da72cacda04c1
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package com.gkhy.safePlatform.targetDuty.model.dto.resp;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.sql.Timestamp;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
public class TargetDutyWorkApproveDto implements Serializable {
    
        private Long id;
    //删除标识:0正常1删除
        private Integer delFlag;
    //创建时间
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
        private Timestamp gmtCreate;
    //更新时间
        @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
        private Timestamp gmtModitify;
    //创建人uid
        private Long createUid;
    //更新人uid
        private Long updateUid;
    //流程名称
        private String workName;
    //流程标题
        private String title;
    //提交人ID/外键
        private Long submitPersonId;
    //提交人名称/外键
        private String submitPersonName;
    //审批人ID/外键
        private Long approvePersonId;
    //审批人名称/外键
        private String approvePersonName;
    //审批状态 1:未审批 2:审批中 3:审批完成
        private Integer approveStatus;
    //审批结果 0:不通过 1:通过
        private Integer approveResult;
    //审批意见
        private String approveMemo;
    //关联业务类型 1:目标检查 2:目标上报
        private Integer relateType;
    //关联的审批对象表ID
        private Long relateId;
    //关联业务说明
        private String relateDesc;
    //排序
        private Integer sort;
 
 
    //目标指标分解列表
    private List<TargetApproveDivideDetailDto> targetDivideDetailList = new ArrayList<>();
 
    public List<TargetApproveDivideDetailDto> getTargetDivideDetailList() {
        return targetDivideDetailList;
    }
 
    public void setTargetDivideDetailList(List<TargetApproveDivideDetailDto> targetDivideDetailList) {
        this.targetDivideDetailList = targetDivideDetailList;
    }
 
 
            
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    //删除标识:0正常1删除        
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
    //创建时间        
    public Timestamp getGmtCreate() {
        return gmtCreate;
    }
 
    public void setGmtCreate(Timestamp gmtCreate) {
        this.gmtCreate = gmtCreate;
    }
    //更新时间        
    public Timestamp getGmtModitify() {
        return gmtModitify;
    }
 
    public void setGmtModitify(Timestamp gmtModitify) {
        this.gmtModitify = gmtModitify;
    }
    //创建人uid        
    public Long getCreateUid() {
        return createUid;
    }
 
    public void setCreateUid(Long createUid) {
        this.createUid = createUid;
    }
    //更新人uid        
    public Long getUpdateUid() {
        return updateUid;
    }
 
    public void setUpdateUid(Long updateUid) {
        this.updateUid = updateUid;
    }
    //流程名称        
    public String getWorkName() {
        return workName;
    }
 
    public void setWorkName(String workName) {
        this.workName = workName;
    }
    //流程标题        
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
    //提交人ID/外键        
    public Long getSubmitPersonId() {
        return submitPersonId;
    }
 
    public void setSubmitPersonId(Long submitPersonId) {
        this.submitPersonId = submitPersonId;
    }
    //提交人名称/外键        
    public String getSubmitPersonName() {
        return submitPersonName;
    }
 
    public void setSubmitPersonName(String submitPersonName) {
        this.submitPersonName = submitPersonName;
    }
    //审批人ID/外键        
    public Long getApprovePersonId() {
        return approvePersonId;
    }
 
    public void setApprovePersonId(Long approvePersonId) {
        this.approvePersonId = approvePersonId;
    }
    //审批人名称/外键        
    public String getApprovePersonName() {
        return approvePersonName;
    }
 
    public void setApprovePersonName(String approvePersonName) {
        this.approvePersonName = approvePersonName;
    }
    //审批状态 1:未审批 2:审批中 3:审批完成        
    public Integer getApproveStatus() {
        return approveStatus;
    }
 
    public void setApproveStatus(Integer approveStatus) {
        this.approveStatus = approveStatus;
    }
    //审批结果 0:不通过 1:通过        
    public Integer getApproveResult() {
        return approveResult;
    }
 
    public void setApproveResult(Integer approveResult) {
        this.approveResult = approveResult;
    }
    //审批意见        
    public String getApproveMemo() {
        return approveMemo;
    }
 
    public void setApproveMemo(String approveMemo) {
        this.approveMemo = approveMemo;
    }
    //关联业务类型 1:目标检查 2:目标上报        
    public Integer getRelateType() {
        return relateType;
    }
 
    public void setRelateType(Integer relateType) {
        this.relateType = relateType;
    }
    //关联的审批对象表ID        
    public Long getRelateId() {
        return relateId;
    }
 
    public void setRelateId(Long relateId) {
        this.relateId = relateId;
    }
    //关联业务说明        
    public String getRelateDesc() {
        return relateDesc;
    }
 
    public void setRelateDesc(String relateDesc) {
        this.relateDesc = relateDesc;
    }
    //排序        
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
}