From 0b94b26b69e7d299153f1d625376f371654a6849 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Thu, 24 May 2018 15:20:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=BB=BA=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/platform/pojo/FilePathModel.java | 64 ++++++++++++++++++++-- 1 file changed, 60 insertions(+), 4 deletions(-) diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/FilePathModel.java b/platform-dal/src/main/java/com/lyms/platform/pojo/FilePathModel.java index 686c5f6..8631925 100644 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/FilePathModel.java +++ b/platform-dal/src/main/java/com/lyms/platform/pojo/FilePathModel.java @@ -23,20 +23,35 @@ public class FilePathModel extends BaseModel { //孕妇建档id private String patientId; - //身份证正面 + //孕妇身份证正面 private String cardNoz; - //身份证反面 + //孕妇身份证反面 private String cardNof; - //户主信息 + //孕妇户主信息 private String registerHouse; //孕妇信息 private String registerPatient; - //面部信息 + //孕妇面部信息 private String facePatient; + //丈夫身份证正面 + private String hcardNoz; + //丈夫身份证反面 + private String hcardNof; + + //户主信息 + private String hregisterHouse; + + //丈夫信息 + private String hregisterPatient; + + //丈夫面部信息 + private String hfacePatient; + + public String getId() { return id; } @@ -92,4 +107,45 @@ public class FilePathModel extends BaseModel { public void setFacePatient(String facePatient) { this.facePatient = facePatient; } + + + public String getHcardNoz() { + return hcardNoz; + } + + public void setHcardNoz(String hcardNoz) { + this.hcardNoz = hcardNoz; + } + + public String getHcardNof() { + return hcardNof; + } + + public void setHcardNof(String hcardNof) { + this.hcardNof = hcardNof; + } + + public String getHregisterHouse() { + return hregisterHouse; + } + + public void setHregisterHouse(String hregisterHouse) { + this.hregisterHouse = hregisterHouse; + } + + public String getHregisterPatient() { + return hregisterPatient; + } + + public void setHregisterPatient(String hregisterPatient) { + this.hregisterPatient = hregisterPatient; + } + + public String getHfacePatient() { + return hfacePatient; + } + + public void setHfacePatient(String hfacePatient) { + this.hfacePatient = hfacePatient; + } } \ No newline at end of file -- 1.8.3.1