xiangpei
2025-04-07 80662b34fe93b4ede00c7fc03fbd9f01355c94e2
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.ycl.common.enums.business;
 
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;
 
/**
 * 协同办理状态
 *
 * @author:xp
 * @date:2024/11/29 11:13
 */
@Getter
public enum TeamWorkStatusEnum {
 
    NOT_FINISHED("NOT_FINISHED", "未开始"),
    FINISHED("FINISHED", "已完成"),
 
    ;
 
    private final String value;
 
    @JsonValue
    private final String desc;
 
    TeamWorkStatusEnum(String value, String desc) {
        this.value = value;
        this.desc = desc;
    }
}