peng
3 天以前 63e52ca4e0d2085c09d169782c5f57ec4994a8b3
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;
    }
}