Commit 75e5726a41e1b145e23fcf41281540257b19205c

Authored by wangshiming
1 parent 27a0453a83
Exists in dev

大同 建档新增高危专案档案号

Showing 3 changed files with 23 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java View file @ 75e5726
... ... @@ -108,6 +108,9 @@
108 108 //建档日期
109 109 private Date bookbuildingDate;
110 110  
  111 + //高危专案档案号
  112 + private String highRiskFileCode;
  113 +
111 114 //医院ID
112 115 private String hospitalId;
113 116  
... ... @@ -2019,6 +2022,14 @@
2019 2022  
2020 2023 public void setPatientHId(String patientHId) {
2021 2024 this.patientHId = patientHId;
  2025 + }
  2026 +
  2027 + public String getHighRiskFileCode() {
  2028 + return highRiskFileCode;
  2029 + }
  2030 +
  2031 + public void setHighRiskFileCode(String highRiskFileCode) {
  2032 + this.highRiskFileCode = highRiskFileCode;
2022 2033 }
2023 2034  
2024 2035 public TrackDownRecord build() {
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ 75e5726
... ... @@ -2383,6 +2383,7 @@
2383 2383  
2384 2384 patient.setDueDate(DateUtil.parseYMD(yunRequest.getDueDate()));
2385 2385 patient.setFileCode(yunRequest.getFileCode());
  2386 + patient.setHighRiskFileCode(yunRequest.getHighRiskFileCode());
2386 2387 patient.setBookbuildingDoctor(yunRequest.getBookbuildingDoctor());
2387 2388 patient.setBookbuildingDate(DateUtil.parseYMD(yunRequest.getBookbuildingDate()));
2388 2389 patient.setVcCardNo(yunRequest.getVcCardNo());
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java View file @ 75e5726
... ... @@ -477,6 +477,8 @@
477 477 //备注
478 478 private String mremark;
479 479  
  480 + //高危专案档案号
  481 + private String highRiskFileCode;
480 482  
481 483 //就诊卡号
482 484 @FormParam
... ... @@ -1487,6 +1489,14 @@
1487 1489 this.id = id;
1488 1490 }
1489 1491  
  1492 + public String getHighRiskFileCode() {
  1493 + return highRiskFileCode;
  1494 + }
  1495 +
  1496 + public void setHighRiskFileCode(String highRiskFileCode) {
  1497 + this.highRiskFileCode = highRiskFileCode;
  1498 + }
  1499 +
1490 1500 @Override
1491 1501 public String toString() {
1492 1502 return "YunBookbuildingAddRequest{" +
... ... @@ -1573,6 +1583,7 @@
1573 1583 ", patientdId='" + patientdId + '\'' +
1574 1584 ", fillDate='" + fillDate + '\'' +
1575 1585 ", townOrgId='" + townOrgId + '\'' +
  1586 + ", highRiskFileCode='" + highRiskFileCode + '\'' +
1576 1587 '}';
1577 1588 }
1578 1589 }