peng
3 天以前 fa27fd4a21e04352a97988c153b7709ebecc4e89
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 CustomizeFlagEnum {
 
    /**
     * 定制商品
     */
    CUSTOMIZE("定制商品"),
 
    /**
     * 不是定制商品
     */
    NOT_CUSTOMIZE("不是定制商品");
 
    private final String description;
 
    CustomizeFlagEnum(String description) {
        this.description = description;
    }
 
    public String description() {
        return this.description;
    }
 
}