修改申请
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package com.ruoyi.common.enums;
|
||||
|
||||
/**
|
||||
* @author wangqiong
|
||||
* @description 修改案件的提交状态
|
||||
* @date 2023-11-17 14:05
|
||||
*/
|
||||
public enum UpdateSubmitStatus
|
||||
{
|
||||
UNCOMMITTED(0, "未提交"),
|
||||
COMMITTED(1, "已提交"),
|
||||
AGREE(2, "同意已修改的案件"),
|
||||
REFUSE(3, "拒绝已修改的案件"),
|
||||
REVOKE(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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user