1234567891011121314151617 |
- package com.jtgh.yjpt.common;
- /**
- * 错误等级
- */
- public class MsgLevel {
- // 系统错误
- public static int FATAL = -3;
- // 输入,业务逻辑,权限check已经其他类型的错误
- public static int ERROR = -2;
- // 业务逻辑方面的警告
- public static int WARNING = -1;
- // 需要选择的确认
- public static int CONFIRM = 0;
- // 业务处理完成
- public static int INFO = 1;
- }
|