zhanghua
2025-06-11 2ca169c85f61256fb5185c078dba1bfef2be5066
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;
    }
}