Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
2454630f
Commit
2454630f
authored
Nov 27, 2021
by
郭武斌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*)修改feign启动参数错误
parent
d945ba06
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
38 deletions
+38
-38
EquipFeignClient.java
...n/amos/boot/module/common/api/feign/EquipFeignClient.java
+34
-34
IotFeignClient.java
...oin/amos/boot/module/common/api/feign/IotFeignClient.java
+3
-3
VideoFeignClient.java
...n/amos/boot/module/common/api/feign/VideoFeignClient.java
+1
-1
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/feign/EquipFeignClient.java
View file @
2454630f
This diff is collapsed.
Click to expand it.
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/feign/IotFeignClient.java
View file @
2454630f
...
@@ -23,15 +23,15 @@ public interface IotFeignClient {
...
@@ -23,15 +23,15 @@ public interface IotFeignClient {
* 根据航班号查询航班信息
* 根据航班号查询航班信息
**/
**/
@RequestMapping
(
value
=
"/v1/iot/DynamicFlightInfo/{flightNo}"
,
method
=
RequestMethod
.
GET
)
@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
)
@RequestMapping
(
value
=
"/v1/iot/DynamicFlightInfo/list"
,
method
=
RequestMethod
.
GET
)
ResponseModel
<
List
<
Map
<
String
,
Object
>>>
findImgByFileCategory
();
ResponseModel
<
List
<
Map
<
String
,
Object
>>>
findImgByFileCategory
();
@RequestMapping
(
value
=
"/v1/iot/DynamicFlightInfo/detail/{dynamicFlightId}"
,
method
=
RequestMethod
.
GET
)
@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
)
@RequestMapping
(
value
=
"/v1/iot/DynamicFlightInfo/plane/{dynamicFlightId}"
,
method
=
RequestMethod
.
GET
)
ResponseModel
<
Object
>
DynamicFlightInfo
(
@PathVariable
String
dynamicFlightId
);
ResponseModel
<
Object
>
DynamicFlightInfo
(
@PathVariable
(
value
=
"dynamicFlightId"
)
String
dynamicFlightId
);
}
}
amos-boot-module/amos-boot-module-api/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/feign/VideoFeignClient.java
View file @
2454630f
...
@@ -17,5 +17,5 @@ public interface VideoFeignClient {
...
@@ -17,5 +17,5 @@ public interface VideoFeignClient {
@RequestMapping
(
value
=
"/video-original/url/video/{indexCode}"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/video-original/url/video/{indexCode}"
,
method
=
RequestMethod
.
GET
)
ResponseModel
<
String
>
videoUrlByIndexCode
(
@PathVariable
String
indexCode
);
ResponseModel
<
String
>
videoUrlByIndexCode
(
@PathVariable
(
"indexCode"
)
String
indexCode
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment