Commit ddbc873943856ac9df47da571a038e74b5a37b99
1 parent
fbe8f0969d
Exists in
master
and in
6 other branches
添加字段
Showing 2 changed files with 28 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
ddbc873
... | ... | @@ -1478,6 +1478,15 @@ |
1478 | 1478 | if (StringUtils.isNotEmpty(hemoglobinCoupon)) { |
1479 | 1479 | result.setHemoglobinCoupon(hemoglobinCoupon); |
1480 | 1480 | } |
1481 | + Integer okSize = checkModel.getOkSize(); | |
1482 | + if (okSize != null) { | |
1483 | + result.setOkSize(okSize); | |
1484 | + } | |
1485 | + | |
1486 | + Integer abnormalSize = checkModel.getAbnormalSize(); | |
1487 | + if (abnormalSize != null) { | |
1488 | + result.setAbnormalSize(abnormalSize); | |
1489 | + } | |
1481 | 1490 | } |
1482 | 1491 | |
1483 | 1492 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java
View file @
ddbc873
... | ... | @@ -434,6 +434,25 @@ |
434 | 434 | */ |
435 | 435 | private String eyeGuideSuggestions; |
436 | 436 | |
437 | + private Integer okSize; | |
438 | + private Integer abnormalSize; | |
439 | + | |
440 | + public Integer getOkSize() { | |
441 | + return okSize; | |
442 | + } | |
443 | + | |
444 | + public void setOkSize(Integer okSize) { | |
445 | + this.okSize = okSize; | |
446 | + } | |
447 | + | |
448 | + public Integer getAbnormalSize() { | |
449 | + return abnormalSize; | |
450 | + } | |
451 | + | |
452 | + public void setAbnormalSize(Integer abnormalSize) { | |
453 | + this.abnormalSize = abnormalSize; | |
454 | + } | |
455 | + | |
437 | 456 | public String getEyeAppearance() { |
438 | 457 | return eyeAppearance; |
439 | 458 | } |