xiangpei
2025-05-22 e868be6c913a6a99e1491c088d052a5f58e252f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cn.lili.modules.promotion.entity.enums;
 
/**
 * 促销适用范围类型枚举
 *
 * @author Chopper
 * @since 2020-03-19 9:36 上午
 */
public enum PromotionsScopeTypeEnum {
 
    /**
     * 枚举
     */
    ALL("全品类"),
    PORTION_GOODS_CATEGORY("部分商品分类"),
    PORTION_SHOP_CATEGORY("部分店铺分类"),
    PORTION_GOODS("指定商品");
 
    private final String description;
 
    PromotionsScopeTypeEnum(String str) {
        this.description = str;
    }
 
    public String description() {
        return description;
    }
}