WxCpRecordSpStatus.java 669 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package cn.nosum.wx.cp.entity.oa;
  2. import com.google.gson.annotations.SerializedName;
  3. /**
  4. * 审批记录(节点)分支审批状态
  5. * <p>
  6. * 1-审批中;2-已同意;3-已驳回;4-已转审
  7. *
  8. * @author Young
  9. */
  10. public enum WxCpRecordSpStatus {
  11. /**
  12. * 审批中
  13. */
  14. @SerializedName("1")
  15. AUDITING(1),
  16. /**
  17. * 已同意
  18. */
  19. @SerializedName("2")
  20. PASSED(2),
  21. /**
  22. * 已驳回
  23. */
  24. @SerializedName("3")
  25. REJECTED(3),
  26. /**
  27. * 已转审
  28. */
  29. @SerializedName("4")
  30. TURNED(4);
  31. private Integer status;
  32. private WxCpRecordSpStatus(Integer status) {
  33. this.status = status;
  34. }
  35. }