From ce2f71c36513b25db25690b8c3110b9ae1cfa569 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Fri, 23 Mar 2018 17:32:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=84=BF=E7=AB=A5=E6=B7=BB=E5=8A=A0=E6=A1=A3?= =?UTF-8?q?=E6=A1=88=E7=BC=96=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/request/BabyEarBase.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyEarBase.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyEarBase.java index 7c7e9a1..baf2122 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyEarBase.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyEarBase.java @@ -128,6 +128,9 @@ public class BabyEarBase implements IBasicRequestConvert { private Integer serviceStatus; //服务类型 private Integer serviceType; + + //滦平儿童档案编号 + private String fileCode; /** * 服务信息 */ @@ -228,12 +231,22 @@ public class BabyEarBase implements IBasicRequestConvert { babyModel.setFphone(fphone); babyModel.setFbirth(DateUtil.parseYMD(fbirth)); babyModel.setFproTypeId(fproTypeId); + babyModel.setFileCode(fileCode); return babyModel; } public BabyEarBase() { } + + public String getFileCode() { + return fileCode; + } + + public void setFileCode(String fileCode) { + this.fileCode = fileCode; + } + public List getPatientSerResults() { return patientSerResults; } -- 1.8.3.1