Commit c833cc9fd666855eba0a1df41f50007dd19e451d
1 parent
8497374ba4
Exists in
fengning2023-06-06
add 新增访视统计接口
Showing 1 changed file with 15 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/MatdeliverFollowController.java
View file @
c833cc9
| ... | ... | @@ -186,5 +186,20 @@ |
| 186 | 186 | return matdeliverFollowFacade.questionnaireList(param, loginState.getId()); |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | + /** | |
| 190 | + * 获取产后随访列表 | |
| 191 | + * @param request | |
| 192 | + * @return | |
| 193 | + */ | |
| 194 | + @ResponseBody | |
| 195 | + @RequestMapping(value = "/wxList", method = RequestMethod.GET) | |
| 196 | + public BaseListResponse getMatdeliverFollowMakeList( | |
| 197 | + MatdeliverFollowRequest matdeliverFollowRequest, | |
| 198 | + HttpServletRequest request | |
| 199 | + ) { | |
| 200 | + matdeliverFollowRequest.setNeed("need"); | |
| 201 | + return matdeliverFollowFacade.getPostpartumFollowMake(matdeliverFollowRequest,matdeliverFollowRequest.getOperatorId()); | |
| 202 | + } | |
| 203 | + | |
| 189 | 204 | } |