Commit 85456a527487ee8af54d59e4864e708794200cfd
1 parent
6190d882b8
Exists in
master
and in
6 other branches
服务同步
Showing 3 changed files with 4 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java
View file @
85456a5
| ... | ... | @@ -617,6 +617,8 @@ |
| 617 | 617 | jsonObject.put("parentid", ps.getParentid()); |
| 618 | 618 | jsonObject.put("pid", ps.getPid()); |
| 619 | 619 | jsonObject.put("serType", ps.getSerType()); |
| 620 | + //服务对象类型 1-孕妇、2-儿童 | |
| 621 | + jsonObject.put("perType", ps.getPerType()); | |
| 620 | 622 | //指定医生 |
| 621 | 623 | jsonObject.put("serDoct", ps.getSerDoct() == null ? "" : ps.getSerDoct()); |
| 622 | 624 | //服务状态 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java
View file @
85456a5
| ... | ... | @@ -66,6 +66,7 @@ |
| 66 | 66 | ps.setCreateUser(null); |
| 67 | 67 | //操作员修改为小程序开通 |
| 68 | 68 | ps.setUpdateUser(null); |
| 69 | + ps.setPerType(patientService.getPerType()); | |
| 69 | 70 | ps.setSerStatus(patientService.getSerStatus()); |
| 70 | 71 | ps.setSerCode(patientService.getSerCode()); |
| 71 | 72 | ps.setOrderId(patientService.getOrderId()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatdeliverFollowResult.java
View file @
85456a5