Commit 1236e00de4c6cc00a2202517776560819f378bf0
1 parent
c79126cf73
Exists in
master
and in
6 other branches
//隆化-增加 X线摄影报告-查询
Showing 2 changed files with 25 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
View file @
1236e00
| ... | ... | @@ -2394,6 +2394,9 @@ |
| 2394 | 2394 | checkupResult.setTingliRight(result.getTingliRight()); |
| 2395 | 2395 | checkupResult.setYuyan(result.getYuyan()); |
| 2396 | 2396 | checkupResult.setSeJue(result.getSeJue()); |
| 2397 | + //隆化-增加 X线摄影报告 | |
| 2398 | + checkupResult.setxRay(result.getxRay()); | |
| 2399 | + checkupResult.setAbnormalTxt(result.getAbnormalTxt()); | |
| 2397 | 2400 | |
| 2398 | 2401 | return checkupResult; |
| 2399 | 2402 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupPageResult.java
View file @
1236e00
| ... | ... | @@ -417,6 +417,28 @@ |
| 417 | 417 | private String seJue; |
| 418 | 418 | |
| 419 | 419 | private String cxNum; |
| 420 | + /**隆化-增加 X线摄影报告 | |
| 421 | + */ | |
| 422 | + //X摄影(1:正常,2:异常-需要写内容) | |
| 423 | + private Integer xRay; | |
| 424 | + //异常情况填写内容 | |
| 425 | + private String abnormalTxt; | |
| 426 | + | |
| 427 | + public Integer getxRay() { | |
| 428 | + return xRay; | |
| 429 | + } | |
| 430 | + | |
| 431 | + public void setxRay(Integer xRay) { | |
| 432 | + this.xRay = xRay; | |
| 433 | + } | |
| 434 | + | |
| 435 | + public String getAbnormalTxt() { | |
| 436 | + return abnormalTxt; | |
| 437 | + } | |
| 438 | + | |
| 439 | + public void setAbnormalTxt(String abnormalTxt) { | |
| 440 | + this.abnormalTxt = abnormalTxt; | |
| 441 | + } | |
| 420 | 442 | |
| 421 | 443 | public String getCxNum() { |
| 422 | 444 | return cxNum; |