Commit b8359aeb667fcb86cef08eca8717ee974aaae34b
1 parent
d585c2023e
Exists in
master
修改产检删除
Showing 1 changed file with 5 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PregnantBuildController.java
View file @
b8359ae
... | ... | @@ -90,10 +90,14 @@ |
90 | 90 | @RequestMapping(value = "/queryPregnantBuildRecord", method = RequestMethod.GET) |
91 | 91 | @ResponseBody |
92 | 92 | @TokenRequired |
93 | - public BaseListResponse queryPregnantBuildRecord(@RequestParam(required = false) String id,@RequestParam(required = false) String vcCardNo,@RequestParam(required = false) String cardNo,HttpServletRequest httpServletRequest){ | |
93 | + public BaseListResponse queryPregnantBuildRecord(@RequestParam(required = false) String id, | |
94 | + @RequestParam(required = false) String pid, | |
95 | + @RequestParam(required = false) String vcCardNo, | |
96 | + @RequestParam(required = false) String cardNo,HttpServletRequest httpServletRequest){ | |
94 | 97 | BookbuildingQueryRequest bookbuildingQueryRequest = new BookbuildingQueryRequest(); |
95 | 98 | bookbuildingQueryRequest.setVcCardNo(vcCardNo); |
96 | 99 | bookbuildingQueryRequest.setCardNo(cardNo); |
100 | + bookbuildingQueryRequest.setPid(pid); | |
97 | 101 | // id,HuJiaqi添加,为了建档管理里面的查看单条使用 |
98 | 102 | bookbuildingQueryRequest.setId(id); |
99 | 103 | LoginContext loginState = (LoginContext) httpServletRequest.getAttribute("loginContext"); |