IMGFlowHistoryInfo.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.idea.oa.flow2.model.out;
  2. /**
  3. * 输出历史数据:通过流程id获取流程当前所在节点和其他节点对应的状态
  4. */
  5. public class IMGFlowHistoryInfo {
  6. //节点名称
  7. private String nodeKey;
  8. // //审核状态:审批结果(1同意或者2不同意驳回到申请人,3不同意驳回到上一个审核人,4,委托别人进行审核,5,不同意且结束流程,null没有审核)
  9. // private String auditResult;
  10. // 1 审核通过,2退回,3审核中,4申请人撤回,5,监控室撤回,6审核不同意,结束流程
  11. private String type;
  12. //审核是否通过,1通过,其他null
  13. private String isPass;
  14. public String getIsPass() {
  15. return isPass;
  16. }
  17. public void setIsPass(String isPass) {
  18. this.isPass = isPass;
  19. }
  20. public String getNodeKey() {
  21. return nodeKey;
  22. }
  23. public void setNodeKey(String nodeKey) {
  24. this.nodeKey = nodeKey;
  25. }
  26. public String getType() {
  27. return type;
  28. }
  29. public void setType(String type) {
  30. this.type = type;
  31. }
  32. @Override
  33. public String toString() {
  34. return "IMGFlowHistoryInfo{" +
  35. "nodeKey='" + nodeKey + '\'' +
  36. ", type='" + type + '\'' +
  37. '}';
  38. }
  39. }