1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.cloudroam.common.enumeration;
|
| import lombok.Getter;
|
| public enum ProjectTaskAssignStatusEnum {
|
| AN("AN","待排配"),
| AY("AY","已排配"),
| ;
|
| @Getter
| private String message;
|
| @Getter
| private String code;
|
| private ProjectTaskAssignStatusEnum(String code, String message){
| this.code=code;
| this.message=message;
| }
| }
|
|