Commit 2c67310bbd59753918d61efa993d692fae6874c3
1 parent
c3e47e4ded
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 5 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PregnantBuildController.java
View file @
2c67310
| ... | ... | @@ -700,15 +700,17 @@ |
| 700 | 700 | /** |
| 701 | 701 | * 孕期-mommybaby小程序调用接口,居住证设置修改 |
| 702 | 702 | * |
| 703 | - * @param id | |
| 703 | + * @param pid | |
| 704 | + * @param pliveTypeId | |
| 705 | + * @param liveCardNo | |
| 704 | 706 | * @return |
| 705 | 707 | */ |
| 706 | 708 | @RequestMapping(method = RequestMethod.GET, value = "/updateTransientInfo") |
| 707 | 709 | @ResponseBody |
| 708 | - public BaseResponse updateTransientInfo(@RequestParam(required = true) String id, | |
| 710 | + public BaseResponse updateTransientInfo(@RequestParam(required = true) String pid, | |
| 709 | 711 | @RequestParam(required = true)String pliveTypeId, |
| 710 | 712 | @RequestParam(required = false)String liveCardNo) { |
| 711 | - return bookbuildingFacade.updateTransientInfo(id, pliveTypeId,liveCardNo); | |
| 713 | + return bookbuildingFacade.updateTransientInfo(pid, pliveTypeId,liveCardNo); | |
| 712 | 714 | } |
| 713 | 715 | |
| 714 | 716 | } |