fix
songhuangfeng123
2022-09-20 f1f506172a3edff8d31e4db77b8940f115660919
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
218
219
220
221
222
223
224
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;
 
/**
 * 目标责任管理工作流审批表(TargetDutyWorkApprove)表实体类
 *
 * @author xurui
 * @since 2022-08-11 13:37:37
 */
@SuppressWarnings("serial")
@TableName("target_duty_work_approve")
public class TargetDutyWorkApprove extends BaseDomain {
    
    
    @TableId(type = IdType.AUTO)
    private Long id;
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
                //删除标识:0正常1删除
            private Integer delFlag;
        
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
                //创建时间
            @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
        private Timestamp gmtCreate;
        
    public Timestamp getGmtCreate() {
        return gmtCreate;
    }
 
    public void setGmtCreate(Timestamp gmtCreate) {
        this.gmtCreate = gmtCreate;
    }
                //更新时间
            @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
        private Timestamp gmtModitify;
        
    public Timestamp getGmtModitify() {
        return gmtModitify;
    }
 
    public void setGmtModitify(Timestamp gmtModitify) {
        this.gmtModitify = gmtModitify;
    }
                //创建人uid
            private Long createUid;
        
    public Long getCreateUid() {
        return createUid;
    }
 
    public void setCreateUid(Long createUid) {
        this.createUid = createUid;
    }
                //更新人uid
            private Long updateUid;
        
    public Long getUpdateUid() {
        return updateUid;
    }
 
    public void setUpdateUid(Long updateUid) {
        this.updateUid = updateUid;
    }
                //流程名称
            private String workName;
        
    public String getWorkName() {
        return workName;
    }
 
    public void setWorkName(String workName) {
        this.workName = workName;
    }
                //流程标题
            private String title;
        
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
                //提交人ID/外键
            private Long submitPersonId;
        
    public Long getSubmitPersonId() {
        return submitPersonId;
    }
 
    public void setSubmitPersonId(Long submitPersonId) {
        this.submitPersonId = submitPersonId;
    }
                //提交人名称/外键
            private String submitPersonName;
        
    public String getSubmitPersonName() {
        return submitPersonName;
    }
 
    public void setSubmitPersonName(String submitPersonName) {
        this.submitPersonName = submitPersonName;
    }
                //审批人ID/外键
            private Long approvePersonId;
        
    public Long getApprovePersonId() {
        return approvePersonId;
    }
 
    public void setApprovePersonId(Long approvePersonId) {
        this.approvePersonId = approvePersonId;
    }
                //审批人名称/外键
            private String approvePersonName;
        
    public String getApprovePersonName() {
        return approvePersonName;
    }
 
    public void setApprovePersonName(String approvePersonName) {
        this.approvePersonName = approvePersonName;
    }
                //审批状态 1:未审批 2:审批中 3:审批完成
            private Integer approveStatus;
        
    public Integer getApproveStatus() {
        return approveStatus;
    }
 
    public void setApproveStatus(Integer approveStatus) {
        this.approveStatus = approveStatus;
    }
                //审批结果 0:不通过 1:通过
            private Integer approveResult;
        
    public Integer getApproveResult() {
        return approveResult;
    }
 
    public void setApproveResult(Integer approveResult) {
        this.approveResult = approveResult;
    }
                //审批意见
            private String approveMemo;
        
    public String getApproveMemo() {
        return approveMemo;
    }
 
    public void setApproveMemo(String approveMemo) {
        this.approveMemo = approveMemo;
    }
                //关联业务类型 1:目标检查 2:目标上报
            private Integer relateType;
        
    public Integer getRelateType() {
        return relateType;
    }
 
    public void setRelateType(Integer relateType) {
        this.relateType = relateType;
    }
                //关联的审批对象表ID
            private Long relateId;
        
    public Long getRelateId() {
        return relateId;
    }
 
    public void setRelateId(Long relateId) {
        this.relateId = relateId;
    }
                //关联业务json
            private String relateDesc;
        
    public String getRelateDesc() {
        return relateDesc;
    }
 
    public void setRelateDesc(String relateDesc) {
        this.relateDesc = relateDesc;
    }
                //排序
            private Integer sort;
        
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
                //下一级的工作流ID
            private Long childId;
        
    public Long getChildId() {
        return childId;
    }
 
    public void setChildId(Long childId) {
        this.childId = childId;
    }
    
}