|
|
@@ -1,102 +0,0 @@
|
|
1
|
|
-package com.unissoft.model;
|
|
2
|
|
-
|
|
3
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
4
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
5
|
|
-import java.util.Date;
|
|
6
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
7
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
8
|
|
-import java.io.Serializable;
|
|
9
|
|
-import io.swagger.annotations.ApiModel;
|
|
10
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
11
|
|
-
|
|
12
|
|
-/**
|
|
13
|
|
- * <p>
|
|
14
|
|
- *
|
|
15
|
|
- * </p>
|
|
16
|
|
- *
|
|
17
|
|
- * @author My SunShine
|
|
18
|
|
- * @since 2020-12-17
|
|
19
|
|
- */
|
|
20
|
|
-@TableName("process_sub")
|
|
21
|
|
-@ApiModel(value="ProcessSub对象", description="")
|
|
22
|
|
-public class ProcessSub implements Serializable {
|
|
23
|
|
-
|
|
24
|
|
- private static final long serialVersionUID = 1L;
|
|
25
|
|
-
|
|
26
|
|
- @ApiModelProperty(value = "流程子表")
|
|
27
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
28
|
|
- private Integer id;
|
|
29
|
|
-
|
|
30
|
|
- @ApiModelProperty(value = "主流程id")
|
|
31
|
|
- @TableField("zid")
|
|
32
|
|
- private Integer zid;
|
|
33
|
|
-
|
|
34
|
|
- @ApiModelProperty(value = "流程数据选项")
|
|
35
|
|
- @TableField("details")
|
|
36
|
|
- private String details;
|
|
37
|
|
-
|
|
38
|
|
- @ApiModelProperty(value = "流程标题")
|
|
39
|
|
- @TableField("title")
|
|
40
|
|
- private String title;
|
|
41
|
|
-
|
|
42
|
|
- @TableField("operation_time")
|
|
43
|
|
- private Date operationTime;
|
|
44
|
|
-
|
|
45
|
|
- @TableField("step")
|
|
46
|
|
- private Integer step;
|
|
47
|
|
-
|
|
48
|
|
- public Integer getId() {
|
|
49
|
|
- return id;
|
|
50
|
|
- }
|
|
51
|
|
-
|
|
52
|
|
- public void setId(Integer id) {
|
|
53
|
|
- this.id = id;
|
|
54
|
|
- }
|
|
55
|
|
- public Integer getZid() {
|
|
56
|
|
- return zid;
|
|
57
|
|
- }
|
|
58
|
|
-
|
|
59
|
|
- public void setZid(Integer zid) {
|
|
60
|
|
- this.zid = zid;
|
|
61
|
|
- }
|
|
62
|
|
- public String getDetails() {
|
|
63
|
|
- return details;
|
|
64
|
|
- }
|
|
65
|
|
-
|
|
66
|
|
- public void setDetails(String details) {
|
|
67
|
|
- this.details = details;
|
|
68
|
|
- }
|
|
69
|
|
- public String getTitle() {
|
|
70
|
|
- return title;
|
|
71
|
|
- }
|
|
72
|
|
-
|
|
73
|
|
- public void setTitle(String title) {
|
|
74
|
|
- this.title = title;
|
|
75
|
|
- }
|
|
76
|
|
- public Date getOperationTime() {
|
|
77
|
|
- return operationTime;
|
|
78
|
|
- }
|
|
79
|
|
-
|
|
80
|
|
- public void setOperationTime(Date operationTime) {
|
|
81
|
|
- this.operationTime = operationTime;
|
|
82
|
|
- }
|
|
83
|
|
- public Integer getStep() {
|
|
84
|
|
- return step;
|
|
85
|
|
- }
|
|
86
|
|
-
|
|
87
|
|
- public void setStep(Integer step) {
|
|
88
|
|
- this.step = step;
|
|
89
|
|
- }
|
|
90
|
|
-
|
|
91
|
|
- @Override
|
|
92
|
|
- public String toString() {
|
|
93
|
|
- return "ProcessSub{" +
|
|
94
|
|
- "id=" + id +
|
|
95
|
|
- ", zid=" + zid +
|
|
96
|
|
- ", details=" + details +
|
|
97
|
|
- ", title=" + title +
|
|
98
|
|
- ", operationTime=" + operationTime +
|
|
99
|
|
- ", step=" + step +
|
|
100
|
|
- "}";
|
|
101
|
|
- }
|
|
102
|
|
-}
|