peng
8 天以前 75f9783d5a70a5f037e3b34dc0e479069e63c0e9
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.message.entity.enums;
 
/**
 * 消息状态枚举
 *
 * @author pikachu
 * @since 2020/12/8 9:46
 */
public enum MessageStatusEnum {
 
    //未读消息
    UN_READY("未读消息"),
    //已读消息
    ALREADY_READY("已读消息"),
    //回收站
    ALREADY_REMOVE("回收站");
 
    private final String description;
 
    MessageStatusEnum(String description) {
        this.description = description;
    }
 
    public String getDescription() {
        return description;
    }
 
 
}