parent
c1bbac9026
commit
a43f56d0ec
3 changed files with 33 additions and 5 deletions
@ -0,0 +1,26 @@ |
|||||||
|
package com.daqing.framework.model; |
||||||
|
|
||||||
|
/** |
||||||
|
* 状态码 |
||||||
|
* |
||||||
|
* @auther River |
||||||
|
* @date 2020/9/27 11:56 |
||||||
|
*/ |
||||||
|
public class StatusCode { |
||||||
|
|
||||||
|
public static final Integer TO_BE_ASSIGNED = 0;//待指派
|
||||||
|
|
||||||
|
public static final Integer IN_REVIEW = 1;//审核中
|
||||||
|
|
||||||
|
public static final Integer REVIEWED = 2;//已审核
|
||||||
|
|
||||||
|
public static final Integer REFUSE = 3;//拒绝
|
||||||
|
|
||||||
|
public static final Integer REJECT = 4;//驳回
|
||||||
|
|
||||||
|
public static final Integer RESCINDED = 5;//已撤销
|
||||||
|
|
||||||
|
public static final Integer DRAFT = 6;//草稿
|
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue