Commit 16f0b334ffecec0a1490e2d81c5794a0657ebd9b

Authored by jiangjiazhi
1 parent f15be8ab2a

1

Showing 1 changed file with 13 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java View file @ 16f0b33
... ... @@ -39,6 +39,8 @@
39 39 private String riskScore;
40 40 //备注
41 41 private String remarks;
  42 + //末次月经
  43 + private String lastMenses;
42 44  
43 45 private List data = new ArrayList();
44 46  
... ... @@ -50,6 +52,9 @@
50 52 }
51 53 }catch (Exception e){
52 54 }
  55 + if(null!=patients.getLastMenses()){
  56 + setLastMenses(DateUtil.getyyyy_MM_dd(patients.getLastMenses()));
  57 + }
53 58 setName(patients.getUsername());
54 59 setPhone(patients.getPhone());
55 60 setRemarks(patients.getMremark());
... ... @@ -70,6 +75,14 @@
70 75  
71 76 public void setRiskFactor(List riskFactor) {
72 77 this.riskFactor = riskFactor;
  78 + }
  79 +
  80 + public String getLastMenses() {
  81 + return lastMenses;
  82 + }
  83 +
  84 + public void setLastMenses(String lastMenses) {
  85 + this.lastMenses = lastMenses;
73 86 }
74 87  
75 88 public Integer getAge() {