| | |
| | | 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; |
| | |
| | | */ |
| | | @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); |
| | | |
| | | |
| | | /** |