📄 bookshopconstant.java
字号:
/**
*
*/
package bookshop.tools.constant;
/**
* @描述: 系统常量类
* @单位: 江苏技术师范学院
* @邮箱: lqq03141711@163.com
* @author 林群群
*/
public class BookShopConstant {
/**
* 异常信息标识
*/
public static final String EXCEPTION ="exception";
/**
* 业务逻辑成功执行时跳转的标识
*/
public static final String SUCCESS ="success";
public static final String SUCCESSUSER ="successUser";
/**
* 业务逻辑执行失败时跳转的标识
*/
public static final String FAIL ="fail";
/**
* 用户没登陆时错误标识
*/
public static final String NOT_LOAD ="您还没有登陆!";
/**
* 密码不一致
*/
public static final String NOT_SAME ="您输入的两次密码不一致";
/**
* 记录状态变量
*/
public static final int DELETED =1; //存在
public static final int EXIST =0; //已删除
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -