Commit a386525ae536564960055db7b07a5c95e24bf964
1 parent
8afaa0dac0
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 15 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyManageListResult.java
View file @
a386525
| ... | ... | @@ -129,6 +129,19 @@ |
| 129 | 129 | //隆化-儿童健康体检统计表 -体检套餐对应检查时间 |
| 130 | 130 | private List<Map> dataResult; |
| 131 | 131 | |
| 132 | + /** | |
| 133 | + * 数据状态 1-孕妇分娩自动建档、更新为正式数据时修改为0,2:小程序预约建档 | |
| 134 | + */ | |
| 135 | + private Integer dataStatus; | |
| 136 | + | |
| 137 | + public Integer getDataStatus() { | |
| 138 | + return dataStatus; | |
| 139 | + } | |
| 140 | + | |
| 141 | + public void setDataStatus(Integer dataStatus) { | |
| 142 | + this.dataStatus = dataStatus; | |
| 143 | + } | |
| 144 | + | |
| 132 | 145 | public String getRegisterAddress() { |
| 133 | 146 | return registerAddress; |
| 134 | 147 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/BabyListTask.java
View file @
a386525
| ... | ... | @@ -269,6 +269,8 @@ |
| 269 | 269 | //儿童档案户籍地址 |
| 270 | 270 | String registerAddress= CommonsHelper.getResidence(model.getBabyProvinceId(), model.getBabyCityId(), model.getBabyAreaId(), model.getBabyStreetId(), model.getBabyAddress(), basicConfigService); |
| 271 | 271 | result.setRegisterAddress(registerAddress); |
| 272 | + //数据状态 1-孕妇分娩自动建档、更新为正式数据时修改为0,2:小程序预约建档 | |
| 273 | + result.setDataStatus(model.getDataStatus()); | |
| 272 | 274 | list.add(result); |
| 273 | 275 | } |
| 274 | 276 | } |