fuliqi
2024-11-27 ec24bac9aa1fcd095c5767705fa0a4303aaf2f42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ycl.common.enums.business;
 
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;
 
/**
 * 文件类型枚举
 *
 * @author:flq
 * @date:2024/11/27 18:21
 */
@Getter
public enum FileTypeEnum {
    PROJECT_INFO("project_info", "项目基本信息");
 
    private final String code;
 
    private final String desc;
 
    FileTypeEnum(String code, String desc) {
        this.code = code;
        this.desc = desc;
    }
}