Commit 5a1ee3bc33ee0bc9f26441058c88b3c6b96f1aeb
1 parent
894aef212e
Exists in
master
and in
8 other branches
update code
Showing 2 changed files with 11 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
5a1ee3b
| ... | ... | @@ -449,6 +449,8 @@ |
| 449 | 449 | result.setBookbuildingDoctor(p.getBookbuildingDoctor()); |
| 450 | 450 | result.setBookbuildingDate(DateUtil.getyyyy_MM_dd(p.getBookbuildingDate())); |
| 451 | 451 | result.setServiceType(p.getServiceType()); |
| 452 | + | |
| 453 | + result.setExpType(String.valueOf(p.getExpType() == null ? "" : p.getExpType())); | |
| 452 | 454 | } |
| 453 | 455 | BaseObjectResponse objectResponse = new BaseObjectResponse(); |
| 454 | 456 | objectResponse.setData(result); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
View file @
5a1ee3b
| ... | ... | @@ -126,6 +126,15 @@ |
| 126 | 126 | //备注 |
| 127 | 127 | private String mremark; |
| 128 | 128 | |
| 129 | + private String expType; | |
| 130 | + | |
| 131 | + public String getExpType() { | |
| 132 | + return expType; | |
| 133 | + } | |
| 134 | + | |
| 135 | + public void setExpType(String expType) { | |
| 136 | + this.expType = expType; | |
| 137 | + } | |
| 129 | 138 | |
| 130 | 139 | public String getMremark() { |
| 131 | 140 | return mremark; |