1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.panzhihua.common.api;
|
| import lombok.Getter;
|
| /**
| * 浪潮接口请求返回结果对象
| * @author manailin
| * @date 2021/06/20
| */
| @Getter
| public enum LcRequestEnum {
| FALSE("0", "失败"),
| SUCCESS("200", "成功");
|
| private final String code;
| private final String result;
|
| LcRequestEnum(String code, String result) {
| this.code = code;
| this.result = result;
| }
|
|
| }
|
|