From 933e59a2df0927cec91c76333ce7935c595ab207 Mon Sep 17 00:00:00 2001 From: jiangjiazhi Date: Wed, 22 Jun 2016 17:41:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E5=A6=87=E5=A2=9E=E5=8A=A0=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/lyms/platform/pojo/Patients.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java b/platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java index d3ca6b1..7b43863 100644 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java +++ b/platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java @@ -317,6 +317,8 @@ public class Patients extends BaseModel { private Integer lastReportId; //高危风险id private List riskFactorId; + //建档时高危风险id + private List firstRiskFactorId; //风险等级颜色 private String riskLevelId; //高危评分值 @@ -330,6 +332,14 @@ public class Patients extends BaseModel { private String husbandPhone; private String vcCardNo; + public List getFirstRiskFactorId() { + return firstRiskFactorId; + } + + public void setFirstRiskFactorId(List firstRiskFactorId) { + this.firstRiskFactorId = firstRiskFactorId; + } + public List getRiskFactorId() { return riskFactorId; } -- 1.8.3.1