Commit 7f85de1ea8e06fb966c908b9a961d474d6f760c5
1 parent
21ebacb1db
Exists in
master
and in
6 other branches
SmsConfigModel 过滤掉不同步
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
7f85de1
... | ... | @@ -1450,7 +1450,7 @@ |
1450 | 1450 | |
1451 | 1451 | public BaseObjectResponse queryHospitals(String keyWord, Integer page, Integer limit) { |
1452 | 1452 | OrganizationQuery organizationQuery = new OrganizationQuery(); |
1453 | - if (null != page && limit != page) { | |
1453 | + if (null != page && limit != null) { | |
1454 | 1454 | organizationQuery.setNeed("true"); |
1455 | 1455 | organizationQuery.setPage(page); |
1456 | 1456 | organizationQuery.setLimit(limit); |