zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.changhong.epc.bean.form;
 
import lombok.Data;
 
import java.util.Map;
 
@Data
public class ProcessState {
    
    /**
     * 流程大状态
     */
    private String processState;
    
    
    /**
     * 流程log-已办,退回
     */
    private String processLog;
    
    /**
     * 流程待办
     */
    private String processTask;
    
    /**
     * 流程提交人
     */
    private String processUser;
    
    /**
     * 表单Id
     */
    private String formId;
    
    /**
     * 表单数据ID
     */
    private Integer dataRowNum;
    
    /**
     * 租户Id
     */
    private String tenantId;
    
    /**
     * 票据状态
     */
    private String orderStatus;
    /**
     * 票据是否上传
     */
    private String orderCode;
    
    /**
     * 编号
     */
    private String number;
 
    private FormSolidiFication formSolidiFication;
 
    /**
     * 创建人
     */
    private String createUser;
 
    private String solidification;
 
    /**
     * 回执编号
     */
    private String voucherno;
 
    /**
     * 到账状态
     */
    private String conformingstate;
 
    /**
     * 表单主表信息
     */
    public Map<String, Object> mainInfo;
 
    /**
     * 交易号
     */
    private String tradeNumber;
 
    /**
     * 项目负责人
     */
    private String projectLeaderPhone;
 
    /**
     * 固化html保存地址
     */
    private String htmlUrl;
 
}