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
| package com.ruoyi.web.tool;
|
| /**
| * 返回结果枚举接口
| * @param <T>
| */
| public interface R<T> {
| /**
| * 状态码
| */
| Integer code = 200;
| /**
| * 返回结果说明
| */
| String msg = "";
|
| /**
| * 返回状态码
| * @return
| */
| Integer getCode();
|
| /**
| * 返回结果说明
| * @return
| */
| String getMsg();
| }
|
|