zxl
5 天以前 8063ee7eee51bfe25a09428e6efc60f828b270c6
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
31
32
33
34
35
36
package cn.lili.modules.order.order.entity.enums;
 
/**
 * 投诉角色枚举
 *
 * @author paulG
 * @since 2020/12/7
 **/
public enum CommunicationOwnerEnum {
 
    /**
     * 买家
     */
    BUYER("买家"),
 
    /**
     * 卖家
     */
    STORE("卖家"),
 
    /**
     * 平台
     */
    PLATFORM("平台");
 
    private final String description;
 
    CommunicationOwnerEnum(String description) {
        this.description = description;
    }
 
    public String description() {
        return this.description;
    }
 
}