tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
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
package com.cloudroam.common.enumeration;
 
import lombok.Getter;
 
public enum DailyStatusEnum {
 
    UNFINISHED("0","未完成"),
 
    UNDERWAY("1","进行中"),
    FINISHED("2","已完成"),
 
    CLOSED("3","关闭"),
 
    ;
 
    @Getter
    private String message;
 
    @Getter
    private String code;
 
    private DailyStatusEnum(String code, String message){
        this.code=code;
        this.message=message;
    }
}