12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.idea.oa.flow2.model.out;
- /**
- * 输出历史数据:通过流程id获取流程当前所在节点和其他节点对应的状态
- */
- public class IMGFlowHistoryInfo {
- //节点名称
- private String nodeKey;
- // //审核状态:审批结果(1同意或者2不同意驳回到申请人,3不同意驳回到上一个审核人,4,委托别人进行审核,5,不同意且结束流程,null没有审核)
- // private String auditResult;
- // 1 审核通过,2退回,3审核中,4申请人撤回,5,监控室撤回,6审核不同意,结束流程
- private String type;
- //审核是否通过,1通过,其他null
- private String isPass;
- public String getIsPass() {
- return isPass;
- }
- public void setIsPass(String isPass) {
- this.isPass = isPass;
- }
- public String getNodeKey() {
- return nodeKey;
- }
- public void setNodeKey(String nodeKey) {
- this.nodeKey = nodeKey;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- @Override
- public String toString() {
- return "IMGFlowHistoryInfo{" +
- "nodeKey='" + nodeKey + '\'' +
- ", type='" + type + '\'' +
- '}';
- }
- }
|