| 1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.ruoyi.common.enums;
-
- /**
- * @author wangqiong
- * @description 修改案件的提交状态
- * @date 2023-11-17 14:05
- */
- public enum UpdateSubmitStatus
- {
- UNCOMMITTED(0, "未提交"),
- COMMITTED(1, "已提交"),
- REVOKE(2, "撤销"),
- AGREE(3, "同意已修改的案件"),
- REFUSE(4, "拒绝已修改的案件"),
-
- AGREE_REVOKE(5, "同意撤销修改"),
- REFUSE_REVOKE(6, "拒绝撤销修改"),
- ;
-
- private final Integer code;
- private final String text;
-
- UpdateSubmitStatus(Integer code, String text)
- {
- this.code = code;
- this.text = text;
- }
-
- public Integer getCode()
- {
- return code;
- }
-
- public String getText()
- {
- return text;
- }
- }
|