You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
436 B
18 lines
436 B
package com.imut.common;
|
|
|
|
public interface Constants {
|
|
|
|
String CODE_200 = "200"; //成功
|
|
String CODE_401 = "401"; // 权限不足
|
|
String CODE_400 = "400"; // 参数错误
|
|
String CODE_500 = "500"; // 系统错误
|
|
String CODE_600 = "600"; // 其他业务异常
|
|
String dict_type = "icon";
|
|
|
|
String role_admin = "admin";
|
|
String role_user = "user";
|
|
|
|
}
|
|
|
|
|