wuyouming666
2024-02-26 5fdd0de4a819944b8a831d4666f4e84fdf0a4595
1
2
3
4
5
6
7
8
9
10
11
12
package com.mes.common;
 
/**
 * 定义一些常量进行使用
 */
public interface Constants {
    String Code_500="500";//系统错误
    String Code_401="401";//权限不足
    String Code_400="400";//
    String Code_200="200";//成功
    String Code_600="600";//其他问题
}