peng
8 天以前 9511403d630eea97e54719ed22c0c6781b3ebbe5
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
29
30
package cn.lili.modules.order.order.entity.enums;
 
/**
 * 领取状态状态
 *
 
 **/
public enum ClaimStatusEnum {
 
    /**
     * 分享
     */
    CLAIM("领取"),
 
    /**
     * 未分享
     */
    NOT_CLAIM("未领取");
 
    private final String description;
 
    ClaimStatusEnum(String description) {
        this.description = description;
    }
 
    public String description() {
        return this.description;
    }
 
}