Commit 6d73189e6513b99342049bff9ae84cdf62306460

Authored by jiangjiazhi
1 parent 9ede456059

修改新电子病历

Showing 3 changed files with 9 additions and 9 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/PostReviewModel.java View file @ 6d73189
... ... @@ -17,7 +17,7 @@
17 17 //产妇id
18 18 private String parentId;
19 19 //月龄
20   - private Integer yl;
  20 + private String yl;
21 21  
22 22 private String pid;
23 23  
24 24  
... ... @@ -159,11 +159,11 @@
159 159 this.nextCheckTime = nextCheckTime;
160 160 }
161 161  
162   - public Integer getYl() {
  162 + public String getYl() {
163 163 return yl;
164 164 }
165 165  
166   - public void setYl(Integer yl) {
  166 + public void setYl(String yl) {
167 167 this.yl = yl;
168 168 }
169 169  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PostReviewRequest.java View file @ 6d73189
... ... @@ -94,13 +94,13 @@
94 94 private String checkTime;
95 95 //下次产检时间
96 96 private String nextCheckTime;
97   - private Integer yl;
  97 + private String yl;
98 98  
99   - public Integer getYl() {
  99 + public String getYl() {
100 100 return yl;
101 101 }
102 102  
103   - public void setYl(Integer yl) {
  103 + public void setYl(String yl) {
104 104 this.yl = yl;
105 105 }
106 106  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java View file @ 6d73189
... ... @@ -88,13 +88,13 @@
88 88 //下次产检时间
89 89 private String nextCheckTime;
90 90  
91   - private Integer yl;
  91 + private String yl;
92 92  
93   - public Integer getYl() {
  93 + public String getYl() {
94 94 return yl;
95 95 }
96 96  
97   - public void setYl(Integer yl) {
  97 + public void setYl(String yl) {
98 98 this.yl = yl;
99 99 }
100 100