| | |
| | | * 查询便民服务商家详情 |
| | | * |
| | | * @param id 商家主键 |
| | | * @param cityCode 城市编码 |
| | | * @return 返回结果 |
| | | */ |
| | | @GetMapping("/business/get") |
| | | public R getComCvtBusiness(@RequestParam("id") Long id, @RequestParam("cityCode") String cityCode) { |
| | | return comCvtBusinessService.getComCvtBusiness(id, cityCode); |
| | | public R getComCvtBusiness(@RequestParam("id") Long id) { |
| | | return comCvtBusinessService.getComCvtBusiness(id); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param list 服务集合 |
| | | */ |
| | | @PostMapping("/serve/import") |
| | | public R listSaveConvenientServeExcelVO(@RequestBody List<ComCvtServeExcelVO> list,@RequestParam("communityId") Long communityId){ |
| | | public R listSaveConvenientServeExcelVO(@RequestBody List<ComCvtServeExcelVO> list,@RequestParam(value = "communityId",required = false) Long communityId){ |
| | | return comCvtServeService.listSaveConvenientServeExcelVO(list,communityId); |
| | | } |
| | | } |