Commit 5f308597b92c614e925751f70d9085a782d403b7
1 parent
f0f1aca7cc
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 20 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java
View file @
5f30859
... | ... | @@ -55,7 +55,25 @@ |
55 | 55 | //type 1 儿童建档 2 自动分娩 3 手动建档删除分娩记录 |
56 | 56 | private String type; |
57 | 57 | private String pid; |
58 | + private String cardNo; | |
59 | + private String vcCardNo; | |
58 | 60 | |
61 | + public String getVcCardNo() { | |
62 | + return vcCardNo; | |
63 | + } | |
64 | + | |
65 | + public void setVcCardNo(String vcCardNo) { | |
66 | + this.vcCardNo = vcCardNo; | |
67 | + } | |
68 | + | |
69 | + public String getCardNo() { | |
70 | + return cardNo; | |
71 | + } | |
72 | + | |
73 | + public void setCardNo(String cardNo) { | |
74 | + this.cardNo = cardNo; | |
75 | + } | |
76 | + | |
59 | 77 | public String getPid() { |
60 | 78 | return pid; |
61 | 79 | } |
... | ... | @@ -114,6 +132,8 @@ |
114 | 132 | } |
115 | 133 | } catch (Exception e) { |
116 | 134 | } |
135 | + setCardNo(patients.getCardNo()); | |
136 | + setVcCardNo(patients.getVcCardNo()); | |
117 | 137 | setPid(patients.getPid()); |
118 | 138 | if (null != patients.getLastMenses()) { |
119 | 139 | setLastMenses(DateUtil.getyyyy_MM_dd(patients.getLastMenses())); |