peng
6 天以前 ebe36b26782231d6d6f40a76c6e3cbb23d1b2714
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;
    }
}