zxl
8 天以前 0fb6b9d8d414822668c401a2b507df1fe6d1fa2d
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;
    }
}