zxl
9 天以前 0fb6b9d8d414822668c401a2b507df1fe6d1fa2d
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
package cn.lili.modules.promotion.entity.enums;
 
/**
 * 促销活动申请状态枚举
 *
 * @author Chopper
 * @since 2020-03-19 9:36 上午
 */
public enum PromotionsApplyStatusEnum {
 
    /**
     * 枚举
     */
    APPLY("申请"), PASS("通过"), REFUSE("拒绝");
 
    private final String description;
 
    PromotionsApplyStatusEnum(String str) {
        this.description = str;
    }
 
    public String description() {
        return description;
    }
}