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;
|
|
}
|