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
| package com.doumee.core.constants;
|
| /**
| * 操作类型
| * @author Eva.Caesar Liu
| * @date 2023/03/21 14:49
| */
| public interface OperaType {
|
| /**
| * 创建
| * @author Eva.Caesar Liu
| * @date 2023/03/21 14:49
| */
| interface Create {}
|
| /**
| * 修改
| * @author Eva.Caesar Liu
| * @date 2023/03/21 14:49
| */
| interface Update {}
|
| /**
| * 修改状态
| * @author Eva.Caesar Liu
| * @date 2023/03/21 14:49
| */
| interface UpdateStatus {}
| }
|
|