Commit 2199c2cfe30bdc90d15d18eb6c770a4631aab15b

Authored by jiangjiazhi
1 parent 66c784219a

增加是否通知

Showing 1 changed file with 21 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexListResult.java View file @ 2199c2c
... ... @@ -38,8 +38,27 @@
38 38 private String remarks;
39 39 //末次月经
40 40 private String lastMenses;
  41 +
  42 + private String cardNo;
  43 + private String vcCardNo;
41 44 //<!---------基本信息----------->
42 45  
  46 + public String getCardNo() {
  47 + return cardNo;
  48 + }
  49 +
  50 + public void setCardNo(String cardNo) {
  51 + this.cardNo = cardNo;
  52 + }
  53 +
  54 + public String getVcCardNo() {
  55 + return vcCardNo;
  56 + }
  57 +
  58 + public void setVcCardNo(String vcCardNo) {
  59 + this.vcCardNo = vcCardNo;
  60 + }
  61 +
43 62 public List getRiskFactor() {
44 63 return riskFactor;
45 64 }
... ... @@ -128,7 +147,8 @@
128 147 setPhone(patients.getPhone());
129 148 setRemarks(patients.getMremark());
130 149 setRiskScore("60");
131   -
  150 + setCardNo(patients.getCardNo());
  151 + setVcCardNo(patients.getVcCardNo());
132 152 int days= DateUtil.daysBetween(patients.getLastMenses(),new Date());
133 153 String week= (days/7)+"";
134 154 int day = (days%7);