Commit 5976ff736f26804a5e5074448b1df8fa13ad77e8
1 parent
b10f9273c5
Exists in
master
and in
1 other branch
修改新电子病历
Showing 1 changed file with 11 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java
View file @
5976ff7
| ... | ... | @@ -43,6 +43,8 @@ |
| 43 | 43 | |
| 44 | 44 | //建档类型 0 未分娩建档 1儿童建档时建档 |
| 45 | 45 | private String dueType; |
| 46 | + //1 孕妇 0 产妇 | |
| 47 | + private String isGravida; | |
| 46 | 48 | |
| 47 | 49 | // 胎数 |
| 48 | 50 | private String tireNumber1; |
| ... | ... | @@ -50,6 +52,14 @@ |
| 50 | 52 | |
| 51 | 53 | private List data = new ArrayList(); |
| 52 | 54 | |
| 55 | + public String getIsGravida() { | |
| 56 | + return isGravida; | |
| 57 | + } | |
| 58 | + | |
| 59 | + public void setIsGravida(String isGravida) { | |
| 60 | + this.isGravida = isGravida; | |
| 61 | + } | |
| 62 | + | |
| 53 | 63 | public String getStatus() { |
| 54 | 64 | return status; |
| 55 | 65 | } |
| ... | ... | @@ -91,6 +101,7 @@ |
| 91 | 101 | if (null != patients.getBuildType()) { |
| 92 | 102 | dueType = 0 == patients.getBuildType() ? "0" : "1"; |
| 93 | 103 | } |
| 104 | + setIsGravida(patients.getType()==3?"0":"1"); | |
| 94 | 105 | setName(patients.getUsername()); |
| 95 | 106 | setPhone(patients.getPhone()); |
| 96 | 107 | setRemarks(patients.getMremark()); |