Commit f63a63261951481e9c4413bc15d4e70a3cd1f53d
1 parent
779e13b058
Exists in
master
and in
6 other branches
婚检
Showing 2 changed files with 22 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
View file @
f63a632
... | ... | @@ -2476,6 +2476,8 @@ |
2476 | 2476 | checkupResult.setGuidanceResults(result.getGuidanceResults());//咨询指导结果 |
2477 | 2477 | checkupResult.setPosition(result.getPosition());//部位 |
2478 | 2478 | checkupResult.setDegree(result.getDegree());//程度 |
2479 | + checkupResult.setVolumeLeft(result.getVolumeLeft()); | |
2480 | + checkupResult.setVolumeRight(result.getVolumeRight()); | |
2479 | 2481 | |
2480 | 2482 | return checkupResult; |
2481 | 2483 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupPageResult.java
View file @
f63a632
... | ... | @@ -361,6 +361,26 @@ |
361 | 361 | private String position; |
362 | 362 | //程度 |
363 | 363 | private String degree; |
364 | + //体积左 | |
365 | + private String volumeLeft; | |
366 | + //体积右 | |
367 | + private String volumeRight; | |
368 | + | |
369 | + public String getVolumeLeft() { | |
370 | + return volumeLeft; | |
371 | + } | |
372 | + | |
373 | + public void setVolumeLeft(String volumeLeft) { | |
374 | + this.volumeLeft = volumeLeft; | |
375 | + } | |
376 | + | |
377 | + public String getVolumeRight() { | |
378 | + return volumeRight; | |
379 | + } | |
380 | + | |
381 | + public void setVolumeRight(String volumeRight) { | |
382 | + this.volumeRight = volumeRight; | |
383 | + } | |
364 | 384 | |
365 | 385 | public String getPosition() { |
366 | 386 | return position; |