mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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.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;
    }
 
}