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
| package com.mindskip.xzs.domain.enums;
|
| import lombok.Getter;
|
| /**
| * @author:xp
| * @date:2024/7/15 15:30
| */
| @Getter
| public enum NotifyRefType {
|
| FEEDBACK("feedback", "错题反馈"),
|
| MOBILIZE("mobilize", "调动部门"),
|
| STATUS("status", "状态设置"),
|
| ;
|
| private final String value;
| private final String desc;
|
| NotifyRefType(String value, String desc) {
| this.value = value;
| this.desc = desc;
| }
| }
|
|