IMGFlowHistoryInfo.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. // 判断是否跳过,如果有数据就不跳过
  15. private Boolean isJump=true;
  16. public Boolean getJump() {
  17. return isJump;
  18. }
  19. public void setJump(Boolean jump) {
  20. isJump = jump;
  21. }
  22. public String getIsPass() {
  23. return isPass;
  24. }
  25. public void setIsPass(String isPass) {
  26. this.isPass = isPass;
  27. }
  28. public String getNodeKey() {
  29. return nodeKey;
  30. }
  31. public void setNodeKey(String nodeKey) {
  32. this.nodeKey = nodeKey;
  33. }
  34. public String getType() {
  35. return type;
  36. }
  37. public void setType(String type) {
  38. this.type = type;
  39. }
  40. @Override
  41. public String toString() {
  42. return "IMGFlowHistoryInfo{" +
  43. "nodeKey='" + nodeKey + '\'' +
  44. ", type='" + type + '\'' +
  45. '}';
  46. }
  47. }