Commit 5a5fcc6ccc1ac152a2b359c093e2dc771dc5803f
1 parent
b5e4cc579b
Exists in
master
and in
8 other branches
修改新电子病历
Showing 1 changed file with 9 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PostReviewResult.java
View file @
5a5fcc6
... | ... | @@ -88,8 +88,16 @@ |
88 | 88 | //下次产检时间 |
89 | 89 | private String nextCheckTime; |
90 | 90 | |
91 | + private Integer yl; | |
91 | 92 | |
93 | + public Integer getYl() { | |
94 | + return yl; | |
95 | + } | |
92 | 96 | |
97 | + public void setYl(Integer yl) { | |
98 | + this.yl = yl; | |
99 | + } | |
100 | + | |
93 | 101 | public PostReviewResult convertToResult(PostReviewModel postReviewModel) { |
94 | 102 | setId(postReviewModel.getId()); |
95 | 103 | setParentId(postReviewModel.getParentId()); |
... | ... | @@ -117,6 +125,7 @@ |
117 | 125 | |
118 | 126 | setCheckTime(DateUtil.getyyyy_MM_dd(postReviewModel.getCheckTime())); |
119 | 127 | setNextCheckTime(DateUtil.getyyyy_MM_dd(postReviewModel.getNextCheckTime())); |
128 | + setYl(postReviewModel.getYl()); | |
120 | 129 | return this; |
121 | 130 | } |
122 | 131 |