add 字典报错常量
This commit is contained in:
@@ -9,22 +9,24 @@ public class ResultCommon {
|
||||
|
||||
private ResultCommon() {}
|
||||
|
||||
// 操作成功
|
||||
/**操作成功*/
|
||||
public static final String OK = "message.ok";
|
||||
// 操作失败
|
||||
/**操作失败*/
|
||||
public static final String ERROR = "message.error";
|
||||
// 编辑成功
|
||||
/**编辑成功*/
|
||||
public static final String EDIT_OK = "edit.ok";
|
||||
// 编辑失败
|
||||
/**编辑失败*/
|
||||
public static final String EDIT_ERROR = "edit.error";
|
||||
// 请选择数据
|
||||
/**请选择数据*/
|
||||
public static final String PLEASE_SELECT_DATA = "please.select.data";
|
||||
// 删除成功
|
||||
/**删除成功*/
|
||||
public static final String SUCCESSFULLY_DELETED = "successfully.deleted";
|
||||
// 批量删除成功
|
||||
/**批量删除成功*/
|
||||
public static final String SUCCESSFULLY_DELETED_IN_BULK = "successfully.deleted.in.bulk";
|
||||
// 未找到对应数据
|
||||
/**未找到对应数据*/
|
||||
public static final String NO_CORRESPONDING_DATA_FOUND = "no.corresponding.data.found";
|
||||
/**参数不识别*/
|
||||
public static final String PARAMETER_NOT_RECOGNIZED = "parameter.not.recognized";
|
||||
|
||||
public static final String EMPTY_SOURCE = "message.empty.source"; // 来源不能为空
|
||||
public static final String EMPTY_STANDARD_NUMBER = "message.empty.standard.number"; // 标准编号不能为空
|
||||
@@ -82,10 +84,14 @@ public class ResultCommon {
|
||||
|
||||
public static final String ZIP_CHARSET_ERROR = "zip.charset.error"; // zip压缩包编码错误
|
||||
|
||||
//同一所属模块下,展示区域名称不能重复!
|
||||
/**同一所属模块下,展示区域名称不能重复!*/
|
||||
public static final String TAG_ERROR_1 = "tag.error.1";
|
||||
//该展示区域有关联数据,无法删除!
|
||||
/**该展示区域有关联数据,无法删除!*/
|
||||
public static final String TAG_ERROR_2 = "tag.error.2";
|
||||
/**标签已被引用,无法删除*/
|
||||
public static final String DICT_DELETE_ERROR = "dict.delete.error";
|
||||
|
||||
|
||||
|
||||
public static final String FOLDER_ONLY_ONE = "folder.only.one";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user