TaskCirculationEnum.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.imed.costaccount.common.enums;
  2. /**
  3. * @description: imed-pfm
  4. * @author: juejueguai
  5. * @date: 2021/2/1 11:42
  6. * @copyright: Copyright (c) 2020
  7. * @version: V1.0
  8. * @modified: juejueguai
  9. */
  10. public enum TaskCirculationEnum {
  11. UNALLOCATED(1, "创建改善任务"),
  12. ALLOCATED(2, "创建任务完成后指派改善任务"),
  13. DONT_APPROVAL(3, "不认可"),
  14. DESIGNATED_SCHEME(4, "制定改善方案"),
  15. PDCA_CHECK(5, "PDCA改善方案审核"),
  16. PDCA_ADOPT(6, "PDCA改善方案通过"),
  17. CHECKING(7, "单位负责人审核中"),
  18. CHECKING_PASS(8, "单位负责人审核通过"),
  19. ADMIN_CHECKING(9, "管理员审核中"),
  20. ADMIN_CHECKING_PASS(10, "管理员审核通过")
  21. ;
  22. private Integer taskType;
  23. private String description;
  24. TaskCirculationEnum(Integer taskType, String description) {
  25. this.taskType = taskType;
  26. this.description = description;
  27. }
  28. public Integer getTaskType() {
  29. return taskType;
  30. }
  31. public String getDescription() {
  32. return description;
  33. }
  34. }