xiangpei
2025-05-22 0d9214d780c5093165f566f3e6f0c60f5d8aead7
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
package cn.lili.modules.promotion.entity.enums;
 
/**
 * 优惠券获取方式枚举
 *
 * @author Chopper
 * @since 2020-03-19 9:36 上午
 */
public enum CouponGetEnum {
 
    /**
     * 枚举
     */
    FREE("免费获取"), ACTIVITY("活动获取");
 
    private final String description;
 
    CouponGetEnum(String str) {
        this.description = str;
    }
 
    public String description() {
        return description;
    }
 
 
}