qa-prevention-gwj/src/main/java/com/zcloud/flow/xgf/util/XgfFlowDto.java

46 lines
808 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.zcloud.flow.xgf.util;
import com.zcloud.entity.PageData;
import lombok.Data;
@Data
public class XgfFlowDto {
private String iterator;
// 流程id
private String FLOWS_ID;
// 步骤编码
public String FLOWS_STEP;
public String FLOWS_TYPE;
// 审批结果0-不通过1-通过
private String STATUS;
// 审批意见
private String OPINION;
// 审批部门
private String APPOINT_DEPARTMENT_ID;
// 审批部门名称
private String APPOINT_DEPARTMENT_NAME;
// 审批人
private String APPOINT_USER_ID;
// 审批人名称
private String APPOINT_USER_NAME;
//培训有效期
private String LIMIT_END_TIME;
// 承诺书
private String APPOINT_ANNEX;
//委托书
private String ATTORNEY;
}