1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.cloudroam.common.enumeration;
|
| import lombok.Getter;
|
| public enum ProjectTaskStatusEnum {
|
| AN("AN","待排配"),
| AY("AY","已排配"),
| FN("FN","未开始"),
|
| P("P","进行中"),
| T("T","待测试"),
| TN("TN","测试不通过"),
| TY("TY","测试通过"),
| FY("FY","已完成"),
|
| ;
|
| @Getter
| private String message;
|
| @Getter
| private String code;
|
| private ProjectTaskStatusEnum(String code, String message){
| this.code=code;
| this.message=message;
| }
| }
|
|