Commit 53872df8358e408d0138d64407ccc6963868dac9

Authored by baohanddd
1 parent 861c135982

update assconfig table name

Showing 2 changed files with 10 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/LisCrisisItem.java View file @ 53872df
... ... @@ -38,6 +38,15 @@
38 38 private Date lastMenses;
39 39 private Integer week;
40 40 private String pid;
  41 + private String patientId;
  42 +
  43 + public String getPatientId() {
  44 + return patientId;
  45 + }
  46 +
  47 + public void setPatientId(String patientId) {
  48 + this.patientId = patientId;
  49 + }
41 50  
42 51 public String getPid() {
43 52 return pid;
platform-operate-api/src/main/java/com/lyms/hospitalapi/qhdfy/QhdfyHisService.java View file @ 53872df
... ... @@ -83,6 +83,7 @@
83 83 Patients patients = patientsList.get(0);
84 84 LisCrisisItem crisisItem = new LisCrisisItem();
85 85 crisisItem.setPid(patients.getPid());
  86 + crisisItem.setPatientId(patients.getId());
86 87 crisisItem.setPhone(patients.getPhone());
87 88 crisisItem.setCardNo(patients.getCardNo());
88 89 crisisItem.setPatientName(patients.getUsername());