From d8093fffe997532286cde539ef978b020834e4fd Mon Sep 17 00:00:00 2001 From: LiuZhiYun <492975948@qq.com> Date: Thu, 14 Sep 2023 18:35:18 +0800 Subject: [PATCH] =?UTF-8?q?fixed:=20roleSort=E4=BD=BF=E7=94=A8NotBlank?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E6=97=A0=E6=B3=95update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../agileboot/domain/system/role/command/AddRoleCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agileboot-domain/src/main/java/com/agileboot/domain/system/role/command/AddRoleCommand.java b/agileboot-domain/src/main/java/com/agileboot/domain/system/role/command/AddRoleCommand.java index bd61a50..badd2b6 100644 --- a/agileboot-domain/src/main/java/com/agileboot/domain/system/role/command/AddRoleCommand.java +++ b/agileboot-domain/src/main/java/com/agileboot/domain/system/role/command/AddRoleCommand.java @@ -33,7 +33,7 @@ public class AddRoleCommand { * 角色排序 */ @ExcelColumn(name = "角色排序") - @NotBlank(message = "显示顺序不能为空") + @NotNull(message = "显示顺序不能为空") private Integer roleSort;