|
|
@ -1,14 +1,13 @@ |
|
|
|
package com.yxt.anrui.buscenter.api.busvehicleinformation; |
|
|
|
|
|
|
|
import com.yxt.anrui.buscenter.api.busvehicleinformationhandover.*; |
|
|
|
import com.yxt.common.core.query.PagerQuery; |
|
|
|
import com.yxt.common.core.result.ResultBean; |
|
|
|
import com.yxt.common.core.vo.PagerVo; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* @author Administrator |
|
|
|
* @description |
|
|
@ -19,13 +18,13 @@ import org.springframework.web.bind.annotation.*; |
|
|
|
contextId = "anrui-buscenter-BusVehicleInformation", |
|
|
|
name = "anrui-buscenter", |
|
|
|
path = "v1/busvehicleinformation", |
|
|
|
fallback = BusVehicleInformationHandoverFeignFallback.class) |
|
|
|
fallback = BusVehicleInformationFeignFallback.class) |
|
|
|
public interface BusVehicleInformationFeign { |
|
|
|
|
|
|
|
@ApiOperation("根据交接表sid查询数据") |
|
|
|
@PostMapping("/getByHandoverSid") |
|
|
|
@ResponseBody |
|
|
|
public ResultBean<BusVehicleInformation> getByHandoverSid(@RequestParam("handoverSid") String handoverSid); |
|
|
|
public ResultBean<List<BusVehicleInformation>> getByHandoverSid(@RequestParam("handoverSid") String handoverSid); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|