提交 2a02ffd0 authored 作者: aiqingguo's avatar aiqingguo

借款天数增加限制,同步更新借款配置名称

上级 89b1a2b0
......@@ -28,7 +28,7 @@ public class BorrowerConfigAddParam {
private Integer type;
@ApiModelProperty(value = "借款天数", example = "1")
@NotNull(message = "借款天数不能为空")
@Max(value = 365, message = "接口天数小于等于365")
@Max(value = 365, message = "借款天数小于等于365")
private Integer day;
}
......@@ -31,7 +31,7 @@ public class BorrowerConfigUpdateParam {
private Integer type;
@ApiModelProperty(value = "借款天数", example = "1")
@NotNull(message = "借款天数不能为空")
@Max(value = 365, message = "接口天数小于等于365")
@Max(value = 365, message = "借款天数小于等于365")
private Integer day;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论