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
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;
    }
}