parent
77f907a8b7
commit
888ef5219f
@ -0,0 +1,36 @@
|
||||
package com.ruoyi.common.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 流程状态
|
||||
*
|
||||
* @author wangxy
|
||||
* @date 2024/4/11 9:15
|
||||
*/
|
||||
@Getter
|
||||
public enum ApplyListStatusEnum {
|
||||
/**新建*/
|
||||
NEWSAVE("0","保存"),
|
||||
/**已提交*/
|
||||
SUBMIT("1","已提交"),
|
||||
/**审核通过*/
|
||||
AUDITED("2","审核通过"),
|
||||
/**审核不通过*/
|
||||
GOBACK("3","退回"),
|
||||
/**培训教育提交*/
|
||||
TRAIN("4","培训教育提交"),
|
||||
/**承诺书已上传*/
|
||||
PROMISE("5","承诺书已上传");
|
||||
|
||||
|
||||
private final String status;
|
||||
|
||||
|
||||
private final String description;
|
||||
|
||||
ApplyListStatusEnum(String status, String description){
|
||||
this.status = status;
|
||||
this.description = description;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue