Commit ae7eb0d31c83eb4835c3d1f36802a97ea2abc0b5
1 parent
3b0a73cb47
Exists in
master
and in
6 other branches
儿童管理查询条件
Showing 1 changed file with 2 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
ae7eb0d
... | ... | @@ -2297,10 +2297,12 @@ |
2297 | 2297 | if (request.getHighRiskType() != null) { |
2298 | 2298 | if (request.getHighRiskType() ==1) {//高危 |
2299 | 2299 | babyQuery.setLastHighRisk(1); |
2300 | + babyQuery.setHighRisk(1); | |
2300 | 2301 | }else if (request.getHighRiskType() ==3) {//体弱 |
2301 | 2302 | babyQuery.setWeakSon(1); |
2302 | 2303 | }else if(request.getHighRiskType() == 0){ |
2303 | 2304 | babyQuery.setLastHighRisk(0); |
2305 | + babyQuery.setHighRisk(0); | |
2304 | 2306 | } |
2305 | 2307 | } |
2306 | 2308 |