初始化
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
package com.njcn.web.constant;
|
||||
|
||||
/**
|
||||
* @author hongawen
|
||||
* @version 1.0.0
|
||||
* @date 2021年12月17日 10:16
|
||||
*/
|
||||
public interface ValidMessage {
|
||||
|
||||
|
||||
String ID_NOT_BLANK = "id不能为空,请检查id参数";
|
||||
|
||||
String ID_FORMAT_ERROR = "id格式错误,请检查id参数";
|
||||
|
||||
String DICT_TYPE_ID_NOT_BLANK = "typeId不能为空,请检查typeId参数";
|
||||
|
||||
String DICT_TYPE_ID_FORMAT_ERROR = "typeId格式错误,请检查typeId参数";
|
||||
|
||||
String NAME_NOT_BLANK = "名称不能为空,请检查name参数";
|
||||
|
||||
String NAME_FORMAT_ERROR = "名称格式错误,请检查name参数";
|
||||
|
||||
String CODE_NOT_BLANK = "编号不能为空,请检查code参数";
|
||||
|
||||
String CODE_FORMAT_ERROR = "编号格式错误,请检查code参数";
|
||||
|
||||
String SORT_NOT_NULL = "排序不能为空,请检查sort参数";
|
||||
|
||||
String SORT_FORMAT_ERROR = "排序格式错误,请检查sort参数";
|
||||
|
||||
String OPEN_LEVEL_NOT_NULL = "开启等级不能为空,请检查openLevel参数";
|
||||
|
||||
String OPEN_LEVEL_FORMAT_ERROR = "开启等级格式错误,请检查openLevel参数";
|
||||
|
||||
String OPEN_DESCRIBE_NOT_NULL = "开启描述不能为空,请检查openDescribe参数";
|
||||
|
||||
String OPEN_DESCRIBE_FORMAT_ERROR = "开启描述格式错误,请检查openDescribe参数";
|
||||
|
||||
String AREA_NOT_BLANK = "行政区域不能为空,请检查area参数";
|
||||
|
||||
String AREA_FORMAT_ERROR = "行政区域格式错误,请检查area参数";
|
||||
|
||||
String PID_NOT_BLANK = "父节点不能为空,请检查pid参数";
|
||||
|
||||
String PID_FORMAT_ERROR = "父节点格式错误,请检查pid参数";
|
||||
|
||||
String COLOR_NOT_BLANK = "主题色不能为空,请检查color参数";
|
||||
|
||||
String COLOR_FORMAT_ERROR = "主题色格式错误,请检查color参数";
|
||||
|
||||
String LOGO_NOT_BLANK = "iconUrl不能为空,请检查iconUrl参数";
|
||||
|
||||
String FAVICON_NOT_BLANK = "faviconUrl不能为空,请检查faviconUrl参数";
|
||||
|
||||
String REMARK_NOT_BLANK = "描述不能为空,请检查remark参数";
|
||||
|
||||
String REMARK_FORMAT_ERROR = "描述格式错误,请检查remark参数";
|
||||
|
||||
String PARAM_FORMAT_ERROR = "参数值非法";
|
||||
|
||||
String IP_FORMAT_ERROR = "IP格式非法";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user