Commit 6ae12ce259942a947c1879f95015711bb2e011f9
1 parent
f63a632619
Exists in
master
and in
6 other branches
婚检
Showing 2 changed files with 25 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
View file @
6ae12ce
| ... | ... | @@ -2476,8 +2476,10 @@ |
| 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 | + checkupResult.setVolumeLeft(result.getVolumeLeft());//体积左 | |
| 2480 | + checkupResult.setVolumeRight(result.getVolumeRight());//体积右 | |
| 2481 | + checkupResult.setGaoWanZuo(result.getGaoWanZuo());//睾丸左 | |
| 2482 | + checkupResult.setGaoWanYou(result.getGaoWanYou());//睾丸右 | |
| 2481 | 2483 | |
| 2482 | 2484 | return checkupResult; |
| 2483 | 2485 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupPageResult.java
View file @
6ae12ce
| ... | ... | @@ -366,6 +366,27 @@ |
| 366 | 366 | //体积右 |
| 367 | 367 | private String volumeRight; |
| 368 | 368 | |
| 369 | + //睾丸(左) | |
| 370 | + private String gaoWanZuo; | |
| 371 | + //睾丸(右) | |
| 372 | + private String gaoWanYou; | |
| 373 | + | |
| 374 | + public String getGaoWanZuo() { | |
| 375 | + return gaoWanZuo; | |
| 376 | + } | |
| 377 | + | |
| 378 | + public void setGaoWanZuo(String gaoWanZuo) { | |
| 379 | + this.gaoWanZuo = gaoWanZuo; | |
| 380 | + } | |
| 381 | + | |
| 382 | + public String getGaoWanYou() { | |
| 383 | + return gaoWanYou; | |
| 384 | + } | |
| 385 | + | |
| 386 | + public void setGaoWanYou(String gaoWanYou) { | |
| 387 | + this.gaoWanYou = gaoWanYou; | |
| 388 | + } | |
| 389 | + | |
| 369 | 390 | public String getVolumeLeft() { |
| 370 | 391 | return volumeLeft; |
| 371 | 392 | } |