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 MessageShowType {
|
| //订单
| ORDER("订单"),
| //售后单
| AFTER_SALE("售后订单"),
| //站内信
| NOTICE("站内信");
|
| private final String description;
|
| MessageShowType(String description) {
| this.description = description;
| }
|
| public String getDescription() {
| return description;
| }
|
|
| }
|
|