Commit aa6c170d7868f5513a14da979a043704a412d0dd
1 parent
032e660302
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 @
aa6c170
... | ... | @@ -2448,6 +2448,8 @@ |
2448 | 2448 | checkupResult.setWuguanDetails(result.getWuguanDetails());//五官详情 |
2449 | 2449 | checkupResult.setHunqianHealth(result.getHunqianHealth());//婚前卫生咨询 |
2450 | 2450 | checkupResult.setGuidanceResults(result.getGuidanceResults());//咨询指导结果 |
2451 | + checkupResult.setPosition(result.getPosition());//部位 | |
2452 | + checkupResult.setDegree(result.getDegree());//程度 | |
2451 | 2453 | |
2452 | 2454 | return checkupResult; |
2453 | 2455 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupPageResult.java
View file @
aa6c170
... | ... | @@ -357,6 +357,26 @@ |
357 | 357 | private String hunqianHealth; |
358 | 358 | //咨询指导结果 |
359 | 359 | private String guidanceResults; |
360 | + //部位 | |
361 | + private String position; | |
362 | + //程度 | |
363 | + private String degree; | |
364 | + | |
365 | + public String getPosition() { | |
366 | + return position; | |
367 | + } | |
368 | + | |
369 | + public void setPosition(String position) { | |
370 | + this.position = position; | |
371 | + } | |
372 | + | |
373 | + public String getDegree() { | |
374 | + return degree; | |
375 | + } | |
376 | + | |
377 | + public void setDegree(String degree) { | |
378 | + this.degree = degree; | |
379 | + } | |
360 | 380 | |
361 | 381 | public Map<String, Object> getIntelligence() { |
362 | 382 | return intelligence; |