Commit 180d2c99998539787c0414125542475abfce387a
1 parent
d106f873
角色用户业务线必填校验
Showing
2 changed files
with
2 additions
and
2 deletions
urbanops-module-system/src/main/java/com/zteits/urbanops/module/system/controller/admin/permission/vo/role/RoleSaveReqVO.java
| @@ -46,6 +46,6 @@ public class RoleSaveReqVO { | @@ -46,6 +46,6 @@ public class RoleSaveReqVO { | ||
| 46 | 46 | ||
| 47 | @Schema(description = "业务线:yl-园林;wy-物业;sz-市政", example = "yl") | 47 | @Schema(description = "业务线:yl-园林;wy-物业;sz-市政", example = "yl") |
| 48 | @DiffLogField(name = "业务线") | 48 | @DiffLogField(name = "业务线") |
| 49 | - //@NotNull(message = "业务线不能为空") | 49 | + @NotNull(message = "业务线不能为空") |
| 50 | private String busiLine; | 50 | private String busiLine; |
| 51 | } | 51 | } |
urbanops-module-system/src/main/java/com/zteits/urbanops/module/system/controller/admin/user/vo/user/UserSaveReqVO.java
| @@ -78,6 +78,6 @@ public class UserSaveReqVO { | @@ -78,6 +78,6 @@ public class UserSaveReqVO { | ||
| 78 | } | 78 | } |
| 79 | @Schema(description = "业务线:yl-园林;wy-物业;sz-市政", example = "yl") | 79 | @Schema(description = "业务线:yl-园林;wy-物业;sz-市政", example = "yl") |
| 80 | @DiffLogField(name = "业务线") | 80 | @DiffLogField(name = "业务线") |
| 81 | - //@NotNull(message = "业务线不能为空") | 81 | + @NotNull(message = "业务线不能为空") |
| 82 | private String busiLine; | 82 | private String busiLine; |
| 83 | } | 83 | } |