Commit 6418c3efdbf478a01b4c871ed43bca2020602ca9
1 parent
4a00925eb0
Exists in
master
and in
6 other branches
初诊加入筛查结果
Showing 1 changed file with 22 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java
View file @
6418c3e
... | ... | @@ -289,6 +289,10 @@ |
289 | 289 | private List<Map> otherHighRisk; |
290 | 290 | //高危补充说明 |
291 | 291 | private String highriskDesc; |
292 | + //筛查结果 | |
293 | + private List<String> screenResult; | |
294 | + //结果补充 | |
295 | + private String resultSupple; | |
292 | 296 | // 诊断 |
293 | 297 | private List diagnosis; |
294 | 298 | //处理意见 |
... | ... | @@ -458,6 +462,22 @@ |
458 | 462 | //浮肿 |
459 | 463 | private String edema; |
460 | 464 | |
465 | + public List<String> getScreenResult() { | |
466 | + return screenResult; | |
467 | + } | |
468 | + | |
469 | + public void setScreenResult(List<String> screenResult) { | |
470 | + this.screenResult = screenResult; | |
471 | + } | |
472 | + | |
473 | + public String getResultSupple() { | |
474 | + return resultSupple; | |
475 | + } | |
476 | + | |
477 | + public void setResultSupple(String resultSupple) { | |
478 | + this.resultSupple = resultSupple; | |
479 | + } | |
480 | + | |
461 | 481 | public String getTtita() { |
462 | 482 | return ttita; |
463 | 483 | } |
... | ... | @@ -1604,6 +1624,8 @@ |
1604 | 1624 | @Override |
1605 | 1625 | public AntExChuModel convertToDataModel() { |
1606 | 1626 | AntExChuModel antExChuModel = new AntExChuModel(); |
1627 | + antExChuModel.setScreenResult(screenResult); | |
1628 | + antExChuModel.setResultSupple(resultSupple); | |
1607 | 1629 | antExChuModel.setScreenResult(secrFactor); |
1608 | 1630 | antExChuModel.setResultSupple(resultRepl); |
1609 | 1631 | antExChuModel.setTtita(ttita); |