Commit 62aad00b8346f62011d6d8ef3eb5e7d54bdc9840

Authored by hanshaofeng
1 parent 0b2122a66e

add import test

Showing 2 changed files with 10 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/LisCrisisItem.java View file @ 62aad00
... ... @@ -37,6 +37,15 @@
37 37 //末次月经
38 38 private Date lastMenses;
39 39 private Integer week;
  40 + private String pid;
  41 +
  42 + public String getPid() {
  43 + return pid;
  44 + }
  45 +
  46 + public void setPid(String pid) {
  47 + this.pid = pid;
  48 + }
40 49  
41 50 public String getPatientName() {
42 51 return patientName;
platform-operate-api/src/main/java/com/lyms/hospitalapi/qhdfy/QhdfyHisService.java View file @ 62aad00
... ... @@ -82,6 +82,7 @@
82 82 List<Patients> patientsList = patientsService.queryPatient(patientsQuery);
83 83 Patients patients = patientsList.get(0);
84 84 LisCrisisItem crisisItem = new LisCrisisItem();
  85 + crisisItem.setPid(patients.getPid());
85 86 crisisItem.setPhone(patients.getPhone());
86 87 crisisItem.setCardNo(patients.getCardNo());
87 88 crisisItem.setPatientName(patients.getUsername());