peng
2025-06-13 30b41cc526165b70e04a1fe1438cb79bb035a7bf
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;
    }
}