peng
2025-06-24 2810aeb52b9d5e4079647934f6c8408f9864c493
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.lili.common.enums;
 
import lombok.Getter;
 
@Getter
public enum ActivityCoverTypeEnum {
    VIDEO("video","视频"),
    IMAGE("image","图片"),
    TEXT("text","文字");
 
    private String type;
 
    private String desc;
 
    ActivityCoverTypeEnum(String type,String desc) {
        this.type = type;
        this.desc = desc;
    }
}