xiangpei
2025-07-09 81fbffe6d5691f7c0e25acf0522b71ddf01a7240
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.lili.common.enums;
 
import lombok.Getter;
 
@Getter
public enum CollectTypeEnum {
    video("video","视频"),
    activity("activity","活动"),
    store("store","店铺"),
    goods("goods","商品");
    private String type;
 
    private String desc;
    CollectTypeEnum(String type,String desc) {
        this.type = type;
        this.desc = desc;
    }
}