| | |
| | | * @param carIds 车辆id集合 |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "/t-app-user-car/getCarByIds") |
| | | public R<List<TAppUserCar>> getCarByIds(@RequestBody List<Integer> carIds); |
| | | @PostMapping(value = "/t-app-user-car/t-app-user-car/getCarByIds") |
| | | public R<List<TAppUserCar>> getCarByIds(@RequestBody List<Long> carIds); |
| | | |
| | | |
| | | /** |
| | | * 根据车牌号查询数据 |
| | | * @param licensePlate |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "/t-app-user-car/getAppUserCarByLicensePlate") |
| | | R<TAppUserCar> getAppUserCarByLicensePlate(@RequestParam("licensePlate") String licensePlate); |
| | | } |