Commit c032c672efd66b32dee536b9ba9bb0c41eba5463
1 parent
3517d354f7
Exists in
master
and in
6 other branches
妇女健康管理-在男女性婚检辅助检查页面加上X线摄影报告
Showing 4 changed files with 82 additions and 0 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/PremaritalCheckup.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PremaritalCheckupAddRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupResult.java
platform-dal/src/main/java/com/lyms/platform/pojo/PremaritalCheckup.java
View file @
c032c67
... | ... | @@ -464,6 +464,29 @@ |
464 | 464 | //采血编号 |
465 | 465 | private String cxNum; |
466 | 466 | |
467 | + /**隆化-增加 X线摄影报告 | |
468 | + */ | |
469 | + //X摄影(1:正常,2:异常-需要写内容) | |
470 | + private Integer xRay; | |
471 | + //异常情况填写内容 | |
472 | + private String abnormalTxt; | |
473 | + | |
474 | + public Integer getxRay() { | |
475 | + return xRay; | |
476 | + } | |
477 | + | |
478 | + public void setxRay(Integer xRay) { | |
479 | + this.xRay = xRay; | |
480 | + } | |
481 | + | |
482 | + public String getAbnormalTxt() { | |
483 | + return abnormalTxt; | |
484 | + } | |
485 | + | |
486 | + public void setAbnormalTxt(String abnormalTxt) { | |
487 | + this.abnormalTxt = abnormalTxt; | |
488 | + } | |
489 | + | |
467 | 490 | public String getCxNum() { |
468 | 491 | return cxNum; |
469 | 492 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
View file @
c032c67
... | ... | @@ -494,6 +494,13 @@ |
494 | 494 | checkupResult.setJczt(result.getJczt()); |
495 | 495 | checkupResult.setFkjjState(result.getFkjjState()); |
496 | 496 | checkupResult.setNumCode(com.lyms.platform.common.utils.StringUtils.numCodeStr(result.getNumCode())); |
497 | + /**隆化-增加 X线摄影报告 | |
498 | + */ | |
499 | + //X摄影(1:正常,2:异常-需要写内容) | |
500 | + checkupResult.setxRay(result.getxRay()); | |
501 | + //异常情况填写内容 | |
502 | + checkupResult.setAbnormalTxt(result.getAbnormalTxt()); | |
503 | + | |
497 | 504 | return checkupResult; |
498 | 505 | } |
499 | 506 | |
... | ... | @@ -948,6 +955,12 @@ |
948 | 955 | checkup.setGuidSign(addRequest.getGuidSign()); |
949 | 956 | checkup.setUserSign(addRequest.getUserSign()); |
950 | 957 | |
958 | + /**隆化-增加 X线摄影报告 | |
959 | + */ | |
960 | + //X摄影(1:正常,2:异常-需要写内容) | |
961 | + checkup.setxRay(addRequest.getxRay()); | |
962 | + //异常情况填写内容 | |
963 | + checkup.setAbnormalTxt(addRequest.getAbnormalTxt()); | |
951 | 964 | |
952 | 965 | /* 基础数据 */ |
953 | 966 | checkup.setYn(YnEnums.YES.getId()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PremaritalCheckupAddRequest.java
View file @
c032c67
... | ... | @@ -453,6 +453,29 @@ |
453 | 453 | //采血编号 |
454 | 454 | private String cxNum; |
455 | 455 | |
456 | + /**隆化-增加 X线摄影报告 | |
457 | + */ | |
458 | + //X摄影(1:正常,2:异常-需要写内容) | |
459 | + private Integer xRay; | |
460 | + //异常情况填写内容 | |
461 | + private String abnormalTxt; | |
462 | + | |
463 | + public Integer getxRay() { | |
464 | + return xRay; | |
465 | + } | |
466 | + | |
467 | + public void setxRay(Integer xRay) { | |
468 | + this.xRay = xRay; | |
469 | + } | |
470 | + | |
471 | + public String getAbnormalTxt() { | |
472 | + return abnormalTxt; | |
473 | + } | |
474 | + | |
475 | + public void setAbnormalTxt(String abnormalTxt) { | |
476 | + this.abnormalTxt = abnormalTxt; | |
477 | + } | |
478 | + | |
456 | 479 | public String getCxNum() { |
457 | 480 | return cxNum; |
458 | 481 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PremaritalCheckupResult.java
View file @
c032c67
... | ... | @@ -428,6 +428,29 @@ |
428 | 428 | private String numCode; |
429 | 429 | private String cxNum; |
430 | 430 | |
431 | + /**隆化-增加 X线摄影报告 | |
432 | + */ | |
433 | + //X摄影(1:正常,2:异常-需要写内容) | |
434 | + private Integer xRay; | |
435 | + //异常情况填写内容 | |
436 | + private String abnormalTxt; | |
437 | + | |
438 | + public Integer getxRay() { | |
439 | + return xRay; | |
440 | + } | |
441 | + | |
442 | + public void setxRay(Integer xRay) { | |
443 | + this.xRay = xRay; | |
444 | + } | |
445 | + | |
446 | + public String getAbnormalTxt() { | |
447 | + return abnormalTxt; | |
448 | + } | |
449 | + | |
450 | + public void setAbnormalTxt(String abnormalTxt) { | |
451 | + this.abnormalTxt = abnormalTxt; | |
452 | + } | |
453 | + | |
431 | 454 | public String getCxNum() { |
432 | 455 | return cxNum; |
433 | 456 | } |