|
|
@@ -22,7 +22,22 @@ public class ProcessMain implements Serializable {
|
|
22
|
22
|
|
|
23
|
23
|
private static final long serialVersionUID = 1L;
|
|
24
|
24
|
|
|
25
|
|
- @ApiModelProperty(value = "主流程表")
|
|
|
25
|
+ //业务数据
|
|
|
26
|
+ @TableField(exist = false)
|
|
|
27
|
+ private Integer isAudit;
|
|
|
28
|
+
|
|
|
29
|
+
|
|
|
30
|
+
|
|
|
31
|
+
|
|
|
32
|
+ public Integer getIsAudit() {
|
|
|
33
|
+ return isAudit;
|
|
|
34
|
+ }
|
|
|
35
|
+
|
|
|
36
|
+ public void setIsAudit(Integer isAudit) {
|
|
|
37
|
+ this.isAudit = isAudit;
|
|
|
38
|
+ }
|
|
|
39
|
+
|
|
|
40
|
+ @ApiModelProperty(value = "主流程表")
|
|
26
|
41
|
@TableId(value = "id", type = IdType.AUTO)
|
|
27
|
42
|
private Integer id;
|
|
28
|
43
|
|