Commit 2454630f authored by 郭武斌's avatar 郭武斌

*)修改feign启动参数错误

parent d945ba06
......@@ -23,15 +23,15 @@ public interface IotFeignClient {
* 根据航班号查询航班信息
**/
@RequestMapping(value = "/v1/iot/DynamicFlightInfo/{flightNo}", method = RequestMethod.GET)
ResponseModel<Map<String, Object>> getDynamicFlightInfo(@PathVariable String flightNo);
ResponseModel<Map<String, Object>> getDynamicFlightInfo(@PathVariable(value = "flightNo") String flightNo);
@RequestMapping(value = "/v1/iot/DynamicFlightInfo/list", method = RequestMethod.GET)
ResponseModel<List<Map<String, Object>>> findImgByFileCategory();
@RequestMapping(value = "/v1/iot/DynamicFlightInfo/detail/{dynamicFlightId}", method = RequestMethod.GET)
ResponseModel<Map<String, Object>> findImgByDynamicFlightId(@PathVariable String dynamicFlightId);
ResponseModel<Map<String, Object>> findImgByDynamicFlightId(@PathVariable(value = "dynamicFlightId") String dynamicFlightId);
@RequestMapping(value = "/v1/iot/DynamicFlightInfo/plane/{dynamicFlightId}", method = RequestMethod.GET)
ResponseModel<Object> DynamicFlightInfo(@PathVariable String dynamicFlightId);
ResponseModel<Object> DynamicFlightInfo(@PathVariable(value = "dynamicFlightId") String dynamicFlightId);
}
......@@ -17,5 +17,5 @@ public interface VideoFeignClient {
@RequestMapping(value = "/video-original/url/video/{indexCode}", method = RequestMethod.GET)
ResponseModel<String> videoUrlByIndexCode(@PathVariable String indexCode);
ResponseModel<String> videoUrlByIndexCode(@PathVariable("indexCode") String indexCode);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment