zxl
2025-05-30 ba524bc13846fcbedb231b4bebc9a1a0927c5f70
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
37
38
39
40
41
42
43
44
45
46
47
package cn.lili.modules.order.aftersale.entity.enums;
 
/**
 * 交易投诉状态
 *
 * @author paulG
 * @since 2020/12/4
 **/
public enum ComplaintStatusEnum {
 
    /**
     * 新投诉
     */
    NEW("新投诉"),
    /**
     * 已撤销
     */
    CANCEL("已撤销"),
    /**
     * 待申诉
     */
    WAIT_APPEAL("待申诉"),
    /**
     * 对话中
     */
    COMMUNICATION("对话中"),
    /**
     * 等待仲裁
     */
    WAIT_ARBITRATION("等待仲裁"),
    /**
     * 已完成
     */
    COMPLETE("已完成");
 
    private final String description;
 
    ComplaintStatusEnum(String description) {
        this.description = description;
    }
 
    public String description() {
        return this.description;
    }
 
 
}