Commit 8ed4c55eb8f11ee73b3416b271e1280f3b63ce9e
1 parent
a4fbef9792
Exists in
master
and in
1 other branch
修改bean
Showing 1 changed file with 15 additions and 10 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/DischargeAbstractQueryResult.java
View file @
8ed4c55
| ... | ... | @@ -71,7 +71,7 @@ |
| 71 | 71 | * @createTime 2016年12月06日 14时14分 |
| 72 | 72 | * @discription 高危因素 |
| 73 | 73 | */ |
| 74 | - private String riskFactor; | |
| 74 | + private List<RiskFactoryResultModel> riskFactoryResultModelList; | |
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * @auther HuJiaqi |
| 78 | 78 | |
| ... | ... | @@ -104,9 +104,9 @@ |
| 104 | 104 | /** |
| 105 | 105 | * @auther HuJiaqi |
| 106 | 106 | * @createTime 2016年12月06日 14时18分 |
| 107 | - * @discription 孩子model的list,这个命名是因为高颖提出这样他好处理,后端只需要改一下名字并不麻烦,但是save的bean和查询的bean并不是一个 | |
| 107 | + * @discription 孩子model的list | |
| 108 | 108 | */ |
| 109 | - private List<DischargeAbstractBabyQueryModel> babyList; | |
| 109 | + private List<DischargeAbstractBabyQueryModel> dischargeAbstractBabyQueryModelList; | |
| 110 | 110 | |
| 111 | 111 | public String getStatus() { |
| 112 | 112 | return status; |
| 113 | 113 | |
| ... | ... | @@ -156,12 +156,12 @@ |
| 156 | 156 | this.phone = phone; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - public String getRiskFactor() { | |
| 160 | - return riskFactor; | |
| 159 | + public List<RiskFactoryResultModel> getRiskFactoryResultModelList() { | |
| 160 | + return riskFactoryResultModelList; | |
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - public void setRiskFactor(String riskFactor) { | |
| 164 | - this.riskFactor = riskFactor; | |
| 163 | + public void setRiskFactoryResultModelList(List<RiskFactoryResultModel> riskFactoryResultModelList) { | |
| 164 | + this.riskFactoryResultModelList = riskFactoryResultModelList; | |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | public String getRiskScore() { |
| 168 | 168 | |
| ... | ... | @@ -188,12 +188,17 @@ |
| 188 | 188 | this.dischargeAbstractMotherQueryModel = dischargeAbstractMotherQueryModel; |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - public List<DischargeAbstractBabyQueryModel> getDischargeAbstractBabyQueryModelList() { | |
| 192 | - return babyList; | |
| 191 | + /** | |
| 192 | + * @auther HuJiaqi | |
| 193 | + * @createTime 2016年12月12日 17时17分 | |
| 194 | + * @discription 这个get方法改了名字,因为前端的高颖表示这个名字好处理 | |
| 195 | + */ | |
| 196 | + public List<DischargeAbstractBabyQueryModel> getBabyList() { | |
| 197 | + return dischargeAbstractBabyQueryModelList; | |
| 193 | 198 | } |
| 194 | 199 | |
| 195 | 200 | public void setDischargeAbstractBabyQueryModelList(List<DischargeAbstractBabyQueryModel> dischargeAbstractBabyQueryModelList) { |
| 196 | - this.babyList = dischargeAbstractBabyQueryModelList; | |
| 201 | + this.dischargeAbstractBabyQueryModelList = dischargeAbstractBabyQueryModelList; | |
| 197 | 202 | } |
| 198 | 203 | |
| 199 | 204 | public String getPatientId() { |