|
|
@@ -0,0 +1,136 @@
|
|
|
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_basis")
|
|
|
21
|
+@ApiModel(value="ProcessBasis对象", description="")
|
|
|
22
|
+public class ProcessBasis implements Serializable {
|
|
|
23
|
+
|
|
|
24
|
+ private static final long serialVersionUID = 1L;
|
|
|
25
|
+
|
|
|
26
|
+ //业务字段
|
|
|
27
|
+ @TableField(exist = false)
|
|
|
28
|
+ private Integer content;
|
|
|
29
|
+ @TableField(exist = false)
|
|
|
30
|
+ private Integer zid;
|
|
|
31
|
+ @TableField(exist = false)
|
|
|
32
|
+ private Integer depotId;
|
|
|
33
|
+
|
|
|
34
|
+ public Integer getContent() {
|
|
|
35
|
+ return content;
|
|
|
36
|
+ }
|
|
|
37
|
+
|
|
|
38
|
+ public void setContent(Integer content) {
|
|
|
39
|
+ this.content = content;
|
|
|
40
|
+ }
|
|
|
41
|
+
|
|
|
42
|
+ public Integer getZid() {
|
|
|
43
|
+ return zid;
|
|
|
44
|
+ }
|
|
|
45
|
+
|
|
|
46
|
+ public void setZid(Integer zid) {
|
|
|
47
|
+ this.zid = zid;
|
|
|
48
|
+ }
|
|
|
49
|
+
|
|
|
50
|
+ public Integer getDepotId() {
|
|
|
51
|
+ return depotId;
|
|
|
52
|
+ }
|
|
|
53
|
+
|
|
|
54
|
+ public void setDepotId(Integer depotId) {
|
|
|
55
|
+ this.depotId = depotId;
|
|
|
56
|
+ }
|
|
|
57
|
+
|
|
|
58
|
+ @ApiModelProperty(value = "流程基础表")
|
|
|
59
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
60
|
+ private Integer id;
|
|
|
61
|
+
|
|
|
62
|
+ @ApiModelProperty(value = "主流程的id")
|
|
|
63
|
+ @TableField("main_id")
|
|
|
64
|
+ private Integer mainId;
|
|
|
65
|
+
|
|
|
66
|
+ @ApiModelProperty(value = "流程的类型")
|
|
|
67
|
+ @TableField("type")
|
|
|
68
|
+ private String type;
|
|
|
69
|
+
|
|
|
70
|
+ @ApiModelProperty(value = "每一项流程的名称")
|
|
|
71
|
+ @TableField("title")
|
|
|
72
|
+ private String title;
|
|
|
73
|
+
|
|
|
74
|
+ @ApiModelProperty(value = "执行顺序")
|
|
|
75
|
+ @TableField("step")
|
|
|
76
|
+ private String step;
|
|
|
77
|
+
|
|
|
78
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
79
|
+ @TableField("create_time")
|
|
|
80
|
+ private Date createTime;
|
|
|
81
|
+
|
|
|
82
|
+ public Integer getId() {
|
|
|
83
|
+ return id;
|
|
|
84
|
+ }
|
|
|
85
|
+
|
|
|
86
|
+ public void setId(Integer id) {
|
|
|
87
|
+ this.id = id;
|
|
|
88
|
+ }
|
|
|
89
|
+ public Integer getMainId() {
|
|
|
90
|
+ return mainId;
|
|
|
91
|
+ }
|
|
|
92
|
+
|
|
|
93
|
+ public void setMainId(Integer mainId) {
|
|
|
94
|
+ this.mainId = mainId;
|
|
|
95
|
+ }
|
|
|
96
|
+ public String getType() {
|
|
|
97
|
+ return type;
|
|
|
98
|
+ }
|
|
|
99
|
+
|
|
|
100
|
+ public void setType(String type) {
|
|
|
101
|
+ this.type = type;
|
|
|
102
|
+ }
|
|
|
103
|
+ public String getTitle() {
|
|
|
104
|
+ return title;
|
|
|
105
|
+ }
|
|
|
106
|
+
|
|
|
107
|
+ public void setTitle(String title) {
|
|
|
108
|
+ this.title = title;
|
|
|
109
|
+ }
|
|
|
110
|
+ public String getStep() {
|
|
|
111
|
+ return step;
|
|
|
112
|
+ }
|
|
|
113
|
+
|
|
|
114
|
+ public void setStep(String step) {
|
|
|
115
|
+ this.step = step;
|
|
|
116
|
+ }
|
|
|
117
|
+ public Date getCreateTime() {
|
|
|
118
|
+ return createTime;
|
|
|
119
|
+ }
|
|
|
120
|
+
|
|
|
121
|
+ public void setCreateTime(Date createTime) {
|
|
|
122
|
+ this.createTime = createTime;
|
|
|
123
|
+ }
|
|
|
124
|
+
|
|
|
125
|
+ @Override
|
|
|
126
|
+ public String toString() {
|
|
|
127
|
+ return "ProcessBasis{" +
|
|
|
128
|
+ "id=" + id +
|
|
|
129
|
+ ", mainId=" + mainId +
|
|
|
130
|
+ ", type=" + type +
|
|
|
131
|
+ ", title=" + title +
|
|
|
132
|
+ ", step=" + step +
|
|
|
133
|
+ ", createTime=" + createTime +
|
|
|
134
|
+ "}";
|
|
|
135
|
+ }
|
|
|
136
|
+}
|