Commit 75b1636044f39a79a6b43059e0a34858c0566b0f

Authored by shiyang
1 parent f77d44ca00

孕期-mommybaby小程序调用接口,居住证设置

Showing 1 changed file with 14 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PregnantBuildController.java View file @ 75b1636
... ... @@ -697,5 +697,19 @@
697 697 return bookbuildingFacade.getLaoLingOrgInfo(areaId, orgName);
698 698 }
699 699  
  700 + /**
  701 + * 孕期-mommybaby小程序调用接口,居住证设置修改
  702 + *
  703 + * @param id
  704 + * @return
  705 + */
  706 + @RequestMapping(method = RequestMethod.GET, value = "/updateTransientInfo")
  707 + @ResponseBody
  708 + public BaseResponse updateTransientInfo(@RequestParam(required = true) String id,
  709 + @RequestParam(required = true)String pliveTypeId,
  710 + @RequestParam(required = true)String liveCardNo) {
  711 + return bookbuildingFacade.updateTransientInfo(id, pliveTypeId,liveCardNo);
  712 + }
  713 +
700 714 }