xiangpei
2025-03-03 b5a21d35e93b93fdb1f190fd1851c945b2a3a207
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
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 ProjectProcessTypeEnum {
 
    PROJECT("PROJECT", "项目"),
    ENGINEERING("ENGINEERING", "工程"),
    ;
 
    private final String value;
 
    @JsonValue
    private final String desc;
 
    ProjectProcessTypeEnum(String value, String desc) {
        this.value = value;
        this.desc = desc;
    }
}