‘liusuyi’
2024-01-13 43f46c3801b0aa8544a1703e4f1a27ecc8db22b8
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.utils.result;
 
/**
 * @author 11441
 * 返回状态码
 */
public interface Constants {
    Integer CODE_200 = 200;    // 成功
    Integer CODE_400 = 400;    // 参数错误
    Integer CODE_500 = 500;    // 系统错误
    Integer CODE_401 = 401;    // 权限不足
}