liulin
2025-07-07 1d7a3213f681657a37a6d1dd8501e9a3bf16c809
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.fengdu.gas.common.enums;
 
/**
 * @Author lin.liu
 * @Description 错误编码 接口
 * @Date 2021/4/16
 **/
public interface IErrorCode {
    /**
     * 错误编码
     **/
    Integer getCode();
 
    /**
     * 错误信息
     **/
    String getMessage();
}