Commit 213620ab70296f44bcfb231dd76ef283ce4fbde0

Authored by shiyang
1 parent 596a32e2cd

孕产建档列表展示添加:预约住院分娩医院(滦平定制)

Showing 2 changed files with 11 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ 213620a
... ... @@ -2692,6 +2692,7 @@
2692 2692 for (Patients patients : patientsList) {
2693 2693 PatientManagerQueryModel patientManagerQueryModel = new PatientManagerQueryModel();
2694 2694 BeanUtils.copy(patients, patientManagerQueryModel);
  2695 + patientManagerQueryModel.setYyzyfmHospitalName(couponMapper.getHospitalName(patients.getYyzyfmHospitalId()));
2695 2696 patientManagerQueryModel.setAge(DateUtil.getAge(patients.getBirth()));
2696 2697 patientManagerQueryModel.setpId(patients.getPid());
2697 2698 String dueWeek = "";
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientManagerQueryModel.java View file @ 213620a
... ... @@ -102,6 +102,16 @@
102 102  
103 103 //秦皇岛-有居住证 填写字段
104 104 private String liveCardNo;
  105 + //预约住院分娩医院(滦平定制)
  106 + private String yyzyfmHospitalName;
  107 +
  108 + public String getYyzyfmHospitalName() {
  109 + return yyzyfmHospitalName;
  110 + }
  111 +
  112 + public void setYyzyfmHospitalName(String yyzyfmHospitalName) {
  113 + this.yyzyfmHospitalName = yyzyfmHospitalName;
  114 + }
105 115  
106 116 public String getLiveCardNo() {
107 117 return liveCardNo;