Commit c0be4d3fb2a3754ca7c15d55e9f55c5f33cce746
1 parent
db76976d2b
Exists in
master
and in
8 other branches
bug fix
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/DepartmentsController.java
View file @
c0be4d3
... | ... | @@ -70,7 +70,7 @@ |
70 | 70 | usersQuery.setDeptId(id); |
71 | 71 | Integer count = usersService.queryUsersCount(usersQuery); |
72 | 72 | if(0 < count) { |
73 | - ResultUtils.buildParameterErrorResultAndWrite(response, "部门/科室下有用户数据,不能删除"); | |
73 | + ResultUtils.buildParameterErrorResultAndWrite(response, "该部门/科室下有用户数据,不能删除"); | |
74 | 74 | return; |
75 | 75 | } |
76 | 76 |