ResponseCode

WongBin 3 years ago
parent 66d94a018e
commit fd043d70c5

@ -0,0 +1,68 @@
package com.anjiplus.template.gaea.business.code;
/**
*
* @author lr
* @since 2021-02-22
*/
public interface ResponseCode {
/**
*
*/
String DICT_ITEM_REPEAT = "Dict.item.code.exist";
/**
* null
*/
String DICT_CODE_LOCALE_NULL = "500-00002";
/**
*
*/
String PARAM_IS_NULL = "Rule.execute.param.null";
/**
*
*/
String RULE_CONTENT_COMPILE_ERROR = "Rule.content.compile.error";
/**
*
*/
String RULE_CONTENT_EXECUTE_ERROR = "Rule.content.execute.error";
/**
*
*/
String RULE_CODE_EXIST = "Rule.code.exist";
/**
*
*/
String RULE_CONTENT_NOT_EXIST = "Rule.content.not.exist";
/**
*
*/
String RULE_FIELDS_NOT_EXIST = "Rule.fields.not.exist";
/**
*
*/
String RULE_FIELD_VALUE_IS_REQUIRED = "Rule.field.value.is.required";
/**
*
*/
String RULE_FIELD_VALUE_TYPE_ERROR = "Rule.field.value.type.error";
/**
*
*/
String RULE_FIELDS_CHECK_ERROR = "Rule.fields.check.error";
/**
*
*/
String COMPONENT_NOT_LOAD = "Component.load.check.error";
}
Loading…
Cancel
Save