添加分组

This commit is contained in:
benpaodeyouyusi
2020-05-22 15:42:33 +08:00
parent 4f095309fd
commit 4293fde5ad
14 changed files with 212 additions and 63 deletions

View File

@@ -20,4 +20,12 @@ public class ErrorCodeAddRequest {
@NotEmpty(message = "错误码编码不能为空")
private Integer code;
@ApiModelProperty(value = "错误码分组,字典表获取")
@NotEmpty(message = "错误码分组不能为空")
private Integer group;
@ApiModelProperty(value = "错误码角色,系统内置(枚举)还是自定义")
@NotEmpty(message = "错误码角色不能空")
private Integer type;
}