Commit 651fd2c9136f2039039bb520acc91a3054996486
1 parent
fcffefa905
Exists in
master
and in
1 other branch
111
Showing 1 changed file with 11 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyApplyOrderResult.java
View file @
651fd2c
1 | 1 | package com.lyms.platform.operate.web.result; |
2 | 2 | |
3 | +import com.lyms.platform.common.enums.ApplyOrderStatusEnums; | |
3 | 4 | import com.lyms.platform.common.enums.SexEnum; |
4 | 5 | import com.lyms.platform.common.utils.DateUtil; |
5 | 6 | import com.lyms.platform.common.utils.StringUtils; |
6 | 7 | |
... | ... | @@ -48,7 +49,16 @@ |
48 | 49 | private String zhuanCName; |
49 | 50 | //转入医院 |
50 | 51 | private String zhuanRname; |
52 | + private String status; | |
51 | 53 | |
54 | + public String getStatus() { | |
55 | + return status; | |
56 | + } | |
57 | + | |
58 | + public void setStatus(String status) { | |
59 | + this.status = status; | |
60 | + } | |
61 | + | |
52 | 62 | public String getZhuanCName() { |
53 | 63 | return zhuanCName; |
54 | 64 | } |
... | ... | @@ -94,6 +104,7 @@ |
94 | 104 | if (null != referralApplyOrderModel.getCreated()) { |
95 | 105 | setCreated(DateUtil.getyyyy_MM_dd(referralApplyOrderModel.getCreated())); |
96 | 106 | } |
107 | + setStatus(ApplyOrderStatusEnums.getTitle(referralApplyOrderModel.getStatus())); | |
97 | 108 | setTransferredDisease(referralApplyOrderModel.getTransferredDisease()); |
98 | 109 | setTransferredHospital(referralApplyOrderModel.getTransferredHospital()); |
99 | 110 | setPotentialRisk(referralApplyOrderModel.getPotentialRisk()); |