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
| package com.changhong.autoform.entity;
|
| import lombok.Data;
| @Data
| public class WorkFlowStateEntity {
|
|
| /**
| * 表单ID
| */
| private String formId;
|
| /**
| * 行号
| */
| private Integer dataRowNum ;
|
| /**
| * 工作流 流程kode
| */
|
| private Integer processCode;
|
| /**
| * 在提交时候还是在审批完成时候
| */
| private Integer where;
|
| //以后删了..
| private String token;
| private String tenantId;
| private String companyId;
| }
|
|