|
|
@@ -1,284 +0,0 @@
|
|
1
|
|
-package com.unissoft.model;
|
|
2
|
|
-
|
|
3
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
4
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
5
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
6
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
7
|
|
-import java.io.Serializable;
|
|
8
|
|
-import io.swagger.annotations.ApiModel;
|
|
9
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
10
|
|
-
|
|
11
|
|
-/**
|
|
12
|
|
- * <p>
|
|
13
|
|
- *
|
|
14
|
|
- * </p>
|
|
15
|
|
- *
|
|
16
|
|
- * @author My SunShine
|
|
17
|
|
- * @since 2020-12-19
|
|
18
|
|
- */
|
|
19
|
|
-@TableName("process_audit")
|
|
20
|
|
-@ApiModel(value="ProcessAudit对象", description="")
|
|
21
|
|
-public class ProcessAudit implements Serializable {
|
|
22
|
|
-
|
|
23
|
|
- private static final long serialVersionUID = 1L;
|
|
24
|
|
-
|
|
25
|
|
-
|
|
26
|
|
-
|
|
27
|
|
- //业务字段
|
|
28
|
|
- @TableField(exist = false)
|
|
29
|
|
- private String houseName;
|
|
30
|
|
- @TableField(exist = false)
|
|
31
|
|
- private String applyName;
|
|
32
|
|
- @TableField(exist = false)
|
|
33
|
|
- private String departmentName;
|
|
34
|
|
- @TableField(exist = false)
|
|
35
|
|
- private String companyName;
|
|
36
|
|
-
|
|
37
|
|
-
|
|
38
|
|
-
|
|
39
|
|
-
|
|
40
|
|
-
|
|
41
|
|
- public String getHouseName() {
|
|
42
|
|
- return houseName;
|
|
43
|
|
- }
|
|
44
|
|
-
|
|
45
|
|
- public void setHouseName(String houseName) {
|
|
46
|
|
- this.houseName = houseName;
|
|
47
|
|
- }
|
|
48
|
|
-
|
|
49
|
|
- public String getApplyName() {
|
|
50
|
|
- return applyName;
|
|
51
|
|
- }
|
|
52
|
|
-
|
|
53
|
|
- public void setApplyName(String applyName) {
|
|
54
|
|
- this.applyName = applyName;
|
|
55
|
|
- }
|
|
56
|
|
-
|
|
57
|
|
- public String getDepartmentName() {
|
|
58
|
|
- return departmentName;
|
|
59
|
|
- }
|
|
60
|
|
-
|
|
61
|
|
- public void setDepartmentName(String departmentName) {
|
|
62
|
|
- this.departmentName = departmentName;
|
|
63
|
|
- }
|
|
64
|
|
-
|
|
65
|
|
- public String getCompanyName() {
|
|
66
|
|
- return companyName;
|
|
67
|
|
- }
|
|
68
|
|
-
|
|
69
|
|
- public void setCompanyName(String companyName) {
|
|
70
|
|
- this.companyName = companyName;
|
|
71
|
|
- }
|
|
72
|
|
-
|
|
73
|
|
-
|
|
74
|
|
- @ApiModelProperty(value = "流程审批表")
|
|
75
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
76
|
|
- private Integer id;
|
|
77
|
|
-
|
|
78
|
|
- @ApiModelProperty(value = "主流程id")
|
|
79
|
|
- @TableField("main_id")
|
|
80
|
|
- private Integer mainId;
|
|
81
|
|
-
|
|
82
|
|
- @ApiModelProperty(value = "子流程的id")
|
|
83
|
|
- @TableField("sub_id")
|
|
84
|
|
- private Integer subId;
|
|
85
|
|
-
|
|
86
|
|
- @ApiModelProperty(value = "子流程的数据(1:是,0:否)")
|
|
87
|
|
- @TableField("sub_data")
|
|
88
|
|
- private Integer subData;
|
|
89
|
|
-
|
|
90
|
|
- @ApiModelProperty(value = "审批状态(0:提交,1审批通过:,2:审批不通过,3:审批完成进行中,4已完成)")
|
|
91
|
|
- @TableField("audit_state")
|
|
92
|
|
- private Integer auditState;
|
|
93
|
|
-
|
|
94
|
|
- @ApiModelProperty(value = "子流程的操作时间")
|
|
95
|
|
- @TableField("operation_time")
|
|
96
|
|
- private String operationTime;
|
|
97
|
|
-
|
|
98
|
|
- @ApiModelProperty(value = "流程类型(如:tf)")
|
|
99
|
|
- @TableField("type")
|
|
100
|
|
- private String type;
|
|
101
|
|
-
|
|
102
|
|
- @ApiModelProperty(value = "仓房id")
|
|
103
|
|
- @TableField("house_id")
|
|
104
|
|
- private Integer houseId;
|
|
105
|
|
-
|
|
106
|
|
- @ApiModelProperty(value = "库id")
|
|
107
|
|
- @TableField("depot_id")
|
|
108
|
|
- private Integer depotId;
|
|
109
|
|
-
|
|
110
|
|
- @ApiModelProperty(value = "提交人")
|
|
111
|
|
- @TableField("from_people")
|
|
112
|
|
- private Integer fromPeople;
|
|
113
|
|
-
|
|
114
|
|
- @ApiModelProperty(value = "审批人")
|
|
115
|
|
- @TableField("to_people")
|
|
116
|
|
- private Integer toPeople;
|
|
117
|
|
-
|
|
118
|
|
- @ApiModelProperty(value = "是否是整个业务的首条记录(1是0否)")
|
|
119
|
|
- @TableField("result")
|
|
120
|
|
- private Integer result;
|
|
121
|
|
-
|
|
122
|
|
- @ApiModelProperty(value = "申请人")
|
|
123
|
|
- @TableField("apply_people")
|
|
124
|
|
- private Integer applyPeople;
|
|
125
|
|
-
|
|
126
|
|
- @ApiModelProperty(value = "审批时间")
|
|
127
|
|
- @TableField("audit_time")
|
|
128
|
|
- private String auditTime;
|
|
129
|
|
-
|
|
130
|
|
- @ApiModelProperty(value = "每一个业务流程的流程标识")
|
|
131
|
|
- @TableField("process_id")
|
|
132
|
|
- private String processId;
|
|
133
|
|
-
|
|
134
|
|
- @ApiModelProperty(value = "进行到哪一步的主流程id")
|
|
135
|
|
- @TableField("ongoing_step")
|
|
136
|
|
- private String ongoingStep;
|
|
137
|
|
-
|
|
138
|
|
- @ApiModelProperty(value = "申请时间")
|
|
139
|
|
- @TableField("apply_time")
|
|
140
|
|
- private String applyTime;
|
|
141
|
|
-
|
|
142
|
|
- public Integer getId() {
|
|
143
|
|
- return id;
|
|
144
|
|
- }
|
|
145
|
|
-
|
|
146
|
|
- public void setId(Integer id) {
|
|
147
|
|
- this.id = id;
|
|
148
|
|
- }
|
|
149
|
|
- public Integer getMainId() {
|
|
150
|
|
- return mainId;
|
|
151
|
|
- }
|
|
152
|
|
-
|
|
153
|
|
- public void setMainId(Integer mainId) {
|
|
154
|
|
- this.mainId = mainId;
|
|
155
|
|
- }
|
|
156
|
|
- public Integer getSubId() {
|
|
157
|
|
- return subId;
|
|
158
|
|
- }
|
|
159
|
|
-
|
|
160
|
|
- public void setSubId(Integer subId) {
|
|
161
|
|
- this.subId = subId;
|
|
162
|
|
- }
|
|
163
|
|
- public Integer getSubData() {
|
|
164
|
|
- return subData;
|
|
165
|
|
- }
|
|
166
|
|
-
|
|
167
|
|
- public void setSubData(Integer subData) {
|
|
168
|
|
- this.subData = subData;
|
|
169
|
|
- }
|
|
170
|
|
- public Integer getAuditState() {
|
|
171
|
|
- return auditState;
|
|
172
|
|
- }
|
|
173
|
|
-
|
|
174
|
|
- public void setAuditState(Integer auditState) {
|
|
175
|
|
- this.auditState = auditState;
|
|
176
|
|
- }
|
|
177
|
|
- public String getOperationTime() {
|
|
178
|
|
- return operationTime;
|
|
179
|
|
- }
|
|
180
|
|
-
|
|
181
|
|
- public void setOperationTime(String operationTime) {
|
|
182
|
|
- this.operationTime = operationTime;
|
|
183
|
|
- }
|
|
184
|
|
- public String getType() {
|
|
185
|
|
- return type;
|
|
186
|
|
- }
|
|
187
|
|
-
|
|
188
|
|
- public void setType(String type) {
|
|
189
|
|
- this.type = type;
|
|
190
|
|
- }
|
|
191
|
|
- public Integer getHouseId() {
|
|
192
|
|
- return houseId;
|
|
193
|
|
- }
|
|
194
|
|
-
|
|
195
|
|
- public void setHouseId(Integer houseId) {
|
|
196
|
|
- this.houseId = houseId;
|
|
197
|
|
- }
|
|
198
|
|
- public Integer getDepotId() {
|
|
199
|
|
- return depotId;
|
|
200
|
|
- }
|
|
201
|
|
-
|
|
202
|
|
- public void setDepotId(Integer depotId) {
|
|
203
|
|
- this.depotId = depotId;
|
|
204
|
|
- }
|
|
205
|
|
- public Integer getFromPeople() {
|
|
206
|
|
- return fromPeople;
|
|
207
|
|
- }
|
|
208
|
|
-
|
|
209
|
|
- public void setFromPeople(Integer fromPeople) {
|
|
210
|
|
- this.fromPeople = fromPeople;
|
|
211
|
|
- }
|
|
212
|
|
- public Integer getToPeople() {
|
|
213
|
|
- return toPeople;
|
|
214
|
|
- }
|
|
215
|
|
-
|
|
216
|
|
- public void setToPeople(Integer toPeople) {
|
|
217
|
|
- this.toPeople = toPeople;
|
|
218
|
|
- }
|
|
219
|
|
- public Integer getResult() {
|
|
220
|
|
- return result;
|
|
221
|
|
- }
|
|
222
|
|
-
|
|
223
|
|
- public void setResult(Integer result) {
|
|
224
|
|
- this.result = result;
|
|
225
|
|
- }
|
|
226
|
|
- public Integer getApplyPeople() {
|
|
227
|
|
- return applyPeople;
|
|
228
|
|
- }
|
|
229
|
|
-
|
|
230
|
|
- public void setApplyPeople(Integer applyPeople) {
|
|
231
|
|
- this.applyPeople = applyPeople;
|
|
232
|
|
- }
|
|
233
|
|
- public String getAuditTime() {
|
|
234
|
|
- return auditTime;
|
|
235
|
|
- }
|
|
236
|
|
-
|
|
237
|
|
- public void setAuditTime(String auditTime) {
|
|
238
|
|
- this.auditTime = auditTime;
|
|
239
|
|
- }
|
|
240
|
|
- public String getProcessId() {
|
|
241
|
|
- return processId;
|
|
242
|
|
- }
|
|
243
|
|
-
|
|
244
|
|
- public void setProcessId(String processId) {
|
|
245
|
|
- this.processId = processId;
|
|
246
|
|
- }
|
|
247
|
|
- public String getOngoingStep() {
|
|
248
|
|
- return ongoingStep;
|
|
249
|
|
- }
|
|
250
|
|
-
|
|
251
|
|
- public void setOngoingStep(String ongoingStep) {
|
|
252
|
|
- this.ongoingStep = ongoingStep;
|
|
253
|
|
- }
|
|
254
|
|
- public String getApplyTime() {
|
|
255
|
|
- return applyTime;
|
|
256
|
|
- }
|
|
257
|
|
-
|
|
258
|
|
- public void setApplyTime(String applyTime) {
|
|
259
|
|
- this.applyTime = applyTime;
|
|
260
|
|
- }
|
|
261
|
|
-
|
|
262
|
|
- @Override
|
|
263
|
|
- public String toString() {
|
|
264
|
|
- return "ProcessAudit{" +
|
|
265
|
|
- "id=" + id +
|
|
266
|
|
- ", mainId=" + mainId +
|
|
267
|
|
- ", subId=" + subId +
|
|
268
|
|
- ", subData=" + subData +
|
|
269
|
|
- ", auditState=" + auditState +
|
|
270
|
|
- ", operationTime=" + operationTime +
|
|
271
|
|
- ", type=" + type +
|
|
272
|
|
- ", houseId=" + houseId +
|
|
273
|
|
- ", depotId=" + depotId +
|
|
274
|
|
- ", fromPeople=" + fromPeople +
|
|
275
|
|
- ", toPeople=" + toPeople +
|
|
276
|
|
- ", result=" + result +
|
|
277
|
|
- ", applyPeople=" + applyPeople +
|
|
278
|
|
- ", auditTime=" + auditTime +
|
|
279
|
|
- ", processId=" + processId +
|
|
280
|
|
- ", ongoingStep=" + ongoingStep +
|
|
281
|
|
- ", applyTime=" + applyTime +
|
|
282
|
|
- "}";
|
|
283
|
|
- }
|
|
284
|
|
-}
|