Commit 9a59a5380d28a90987a3a2cd302469cbc975753a

Authored by liquanyu
1 parent 7f6a24e2ec
Exists in dev

fix:优化儿童、产妇转诊相关逻辑

Showing 1 changed file with 22 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ScreeningReferralReceiptRequest.java View file @ 9a59a53
... ... @@ -21,7 +21,10 @@
21 21 private String recDoctor;
22 22 //当前医院的patient
23 23 private String patientId;
24   -
  24 + //转入科室
  25 + private String transferredDepartment;
  26 + //转出科室
  27 + private String outDepartment;
25 28 public String getPatientId() {
26 29 return patientId;
27 30 }
... ... @@ -70,6 +73,22 @@
70 73 this.otherDiagn = otherDiagn;
71 74 }
72 75  
  76 + public String getTransferredDepartment() {
  77 + return transferredDepartment;
  78 + }
  79 +
  80 + public void setTransferredDepartment(String transferredDepartment) {
  81 + this.transferredDepartment = transferredDepartment;
  82 + }
  83 +
  84 + public String getOutDepartment() {
  85 + return outDepartment;
  86 + }
  87 +
  88 + public void setOutDepartment(String outDepartment) {
  89 + this.outDepartment = outDepartment;
  90 + }
  91 +
73 92 /**
74 93 * 具体转换实现
75 94 *
... ... @@ -82,6 +101,8 @@
82 101 }
83 102 referralApplyScreeningModel.setOtherDiagn(otherDiagn);
84 103 referralApplyScreeningModel.setRecDoctor(recDoctor);
  104 + referralApplyScreeningModel.setOutDepartment(outDepartment);
  105 + referralApplyScreeningModel.setTransferredDepartment(transferredDepartment);
85 106 }
86 107 }