|  |  |  | 
|---|
|  |  |  | import com.ruoyi.common.core.domain.R; | 
|---|
|  |  |  | import io.swagger.annotations.ApiOperation; | 
|---|
|  |  |  | import org.springframework.cloud.openfeign.FeignClient; | 
|---|
|  |  |  | import org.springframework.web.bind.annotation.PathVariable; | 
|---|
|  |  |  | import org.springframework.web.bind.annotation.PostMapping; | 
|---|
|  |  |  | import org.springframework.web.bind.annotation.RequestBody; | 
|---|
|  |  |  | import org.springframework.web.bind.annotation.RequestParam; | 
|---|
|  |  |  | 
|---|
|  |  |  | * @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); | 
|---|
|  |  |  | @PostMapping(value = "/t-app-user-car/t-app-user-car/getAllCar") | 
|---|
|  |  |  | public R<List<TAppUserCar>> getAllCar(); | 
|---|
|  |  |  | @PostMapping(value = "/t-app-user-car/t-app-user-car/getCarById/{id}") | 
|---|
|  |  |  | public R<TAppUserCar> getCarById(@PathVariable("id") String id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 根据车牌号查询数据 | 
|---|
|  |  |  | * @param licensePlate | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PostMapping(value = "/t-app-user-car/t-app-user-car/getAppUserCarByLicensePlate") | 
|---|
|  |  |  | R<TAppUserCar> getAppUserCarByLicensePlate(@RequestParam("licensePlate") String licensePlate); | 
|---|
|  |  |  | @PostMapping(value = "/t-app-user-car/t-app-user-car/getAppUserCarByLicensePlates") | 
|---|
|  |  |  | R<List<Long>> getAppUserCarByLicensePlates(@RequestParam("licensePlate") String licensePlate); | 
|---|
|  |  |  | } | 
|---|