| | |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.common.model.vos.user.UserPhoneVO; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | */ |
| | | @GetMapping("/common/data/car/user/list") |
| | | R userComMngCarList(@RequestParam("userId") Long userId); |
| | | >>>>>>> origin/master |
| | | |
| | | @PostMapping("/common/data/car/page") |
| | | R pageQueryComMngCar(@RequestBody PageComMngCarDTO pageComMngCarDTO); |
| | | |
| | | @PostMapping("/common/data/car/save") |
| | | R saveComMngCar(@RequestBody ComMngCarSaveDTO comMngCarSaveDTO); |
| | | |
| | | /** |
| | | * 删除车辆信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @DeleteMapping("/common/data/car/delete") |
| | | R deleteComMngCar(@RequestParam(value = "id") Long id); |
| | | |
| | | /** |
| | | * 批量导入便民服务 |
| | | * @param list 便民服务集合 |
| | | */ |
| | | @PostMapping("/common/data/car/import") |
| | | R listSaveMngCarExcelVO(@RequestBody List<ComMngCarExcelVO> list,@RequestParam("communityId") Long communityId); |
| | | |
| | | } |