xiangpei
2025-05-26 e1350e5565e0119d63e95069d6b0ee135795426d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.lili.modules.promotion.entity.enums;
 
/**
 * 会员优惠券状态枚举
 *
 * @author Chopper
 * @since 2020-03-19 9:36 上午
 */
public enum MemberCouponStatusEnum {
    /**
     * 枚举
     */
    NEW("领取"), USED("已使用"), EXPIRE("过期"), CLOSED("作废");
 
    private final String description;
 
    MemberCouponStatusEnum(String str) {
        this.description = str;
    }
 
    public String description() {
        return description;
    }
}