Commit eb9070f7b312596d0d112cd8c20cd30dceed442f
1 parent
7006743f79
Exists in
master
and in
6 other branches
公卫2.0-新增产后访视
Showing 2 changed files with 61 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/MatdeliverFollowModel.java
View file @
eb9070f
... | ... | @@ -193,6 +193,30 @@ |
193 | 193 | */ |
194 | 194 | private String createUser; |
195 | 195 | |
196 | + /** | |
197 | + * 公卫2.0-新增产后访视 | |
198 | + */ | |
199 | + //国家规范版本号 | |
200 | + private String standard; | |
201 | + //本人姓名 | |
202 | + private String name; | |
203 | + | |
204 | + public String getStandard() { | |
205 | + return standard; | |
206 | + } | |
207 | + | |
208 | + public void setStandard(String standard) { | |
209 | + this.standard = standard; | |
210 | + } | |
211 | + | |
212 | + public String getName() { | |
213 | + return name; | |
214 | + } | |
215 | + | |
216 | + public void setName(String name) { | |
217 | + this.name = name; | |
218 | + } | |
219 | + | |
196 | 220 | public Date getCreateDate() { |
197 | 221 | return createDate; |
198 | 222 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverFollowAddRequest.java
View file @
eb9070f
1 | 1 | package com.lyms.platform.operate.web.request; |
2 | 2 | |
3 | 3 | import com.lyms.platform.common.base.IBasicRequestConvert; |
4 | +import com.lyms.platform.common.utils.DateUtil; | |
4 | 5 | import com.lyms.platform.common.utils.StringUtils; |
5 | 6 | import com.lyms.platform.pojo.MatdeliverFollowModel; |
6 | 7 | import org.springframework.beans.BeanUtils; |
... | ... | @@ -201,6 +202,15 @@ |
201 | 202 | * 创建人 |
202 | 203 | */ |
203 | 204 | private String createUser; |
205 | + /** | |
206 | + * 公卫2.0-新增产后访视 | |
207 | + */ | |
208 | + //分娩日期 | |
209 | + private String deliveryDate; | |
210 | + //国家规范版本号 | |
211 | + private String standard; | |
212 | + //本人姓名 | |
213 | + private String name; | |
204 | 214 | |
205 | 215 | /** |
206 | 216 | * 具体转换实现 |
207 | 217 | |
... | ... | @@ -225,7 +235,34 @@ |
225 | 235 | if (StringUtils.isNotEmpty(bpMap)) { |
226 | 236 | matdeliverFollowModel.setBp(bpMap); |
227 | 237 | } |
238 | + matdeliverFollowModel.setDeliveryDate(DateUtil.getYmdhmDate(deliveryDate)); | |
239 | + matdeliverFollowModel.setStandard(standard); | |
240 | + matdeliverFollowModel.setName(name); | |
228 | 241 | return matdeliverFollowModel; |
242 | + } | |
243 | + | |
244 | + public String getDeliveryDate() { | |
245 | + return deliveryDate; | |
246 | + } | |
247 | + | |
248 | + public void setDeliveryDate(String deliveryDate) { | |
249 | + this.deliveryDate = deliveryDate; | |
250 | + } | |
251 | + | |
252 | + public String getStandard() { | |
253 | + return standard; | |
254 | + } | |
255 | + | |
256 | + public void setStandard(String standard) { | |
257 | + this.standard = standard; | |
258 | + } | |
259 | + | |
260 | + public String getName() { | |
261 | + return name; | |
262 | + } | |
263 | + | |
264 | + public void setName(String name) { | |
265 | + this.name = name; | |
229 | 266 | } |
230 | 267 | |
231 | 268 | public Date getCreateDate() { |