Commit 0a9749e2074a45db607766ecc20c5161a229fc57
1 parent
af1f9e6374
Exists in
master
and in
8 other branches
修改新电子病历
Showing 1 changed file with 16 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java
View file @
0a9749e
| ... | ... | @@ -52,7 +52,17 @@ |
| 52 | 52 | |
| 53 | 53 | //分娩时间,补录时使用 |
| 54 | 54 | private String dueDate; |
| 55 | + //type 1 儿童建档 2 自动分娩 | |
| 56 | + private String type; | |
| 55 | 57 | |
| 58 | + public String getType() { | |
| 59 | + return type; | |
| 60 | + } | |
| 61 | + | |
| 62 | + public void setType(String type) { | |
| 63 | + this.type = type; | |
| 64 | + } | |
| 65 | + | |
| 56 | 66 | private List data = new ArrayList(); |
| 57 | 67 | |
| 58 | 68 | public String getIsGravida() { |
| 59 | 69 | |
| ... | ... | @@ -125,7 +135,13 @@ |
| 125 | 135 | } |
| 126 | 136 | if (null != patients.getFmDate()) { |
| 127 | 137 | this.dueDate = DateUtil.getyyyy_MM_dd(patients.getFmDate()); |
| 138 | + if(patients.getBuildType()==1){ | |
| 139 | + type="1"; | |
| 140 | + }else if(2==patients.getBuildType()) { | |
| 141 | + type="2"; | |
| 142 | + } | |
| 128 | 143 | } |
| 144 | + | |
| 129 | 145 | return this; |
| 130 | 146 | } |
| 131 | 147 | public String getDueDate() { |