zxl
8 天以前 2bd4d8e3d31a47cf4b7c0c8a80f946af0d8fff6e
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
package cn.lili.modules.order.order.entity.enums;
 
/**
 * 分享状态
 *
 **/
public enum ShareStatusEnum {
 
    /**
     * 分享
     */
    SHARE("分享"),
 
    /**
     * 未分享
     */
    NOT_SHARE("未分享");
 
    private final String description;
 
    ShareStatusEnum(String description) {
        this.description = description;
    }
 
    public String description() {
        return this.description;
    }
 
}