Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 06f5e587
authored
Oct 25, 2023
by
刘鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 添加返回结果接收对象
1 parent
a30abe52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
project-order/src/main/java/com/dituhui/pea/order/feign/IBeanRemoteService.java
project-order/src/main/java/com/dituhui/pea/order/feign/IBeanRemoteService.java
View file @
06f5e58
...
...
@@ -95,7 +95,7 @@ public interface IBeanRemoteService {
* @return 网点或者车队列表
*/
@GetMapping
(
"/api/openapi/department/queryServiceOrgList"
)
BeanR
<
List
<
ServiceOrg
>>
serviceOrgList
(
@RequestHeader
(
name
=
"accessToken"
)
String
accessToken
,
@RequestParam
(
"type"
)
String
type
);
BeanR
<
List
<
ServiceOrg
>>
serviceOrgList
(
@RequestHeader
(
name
=
"accessToken"
)
String
accessToken
,
@RequestParam
(
"type"
)
Integer
type
);
/**
...
...
@@ -106,7 +106,7 @@ public interface IBeanRemoteService {
* @return 查询网点/车队详情
*/
@GetMapping
(
"/api/openapi/department/getServiceOrgDetail"
)
BeanR
<
?
>
serviceOrgDetail
(
@RequestHeader
(
name
=
"accessToken"
)
String
accessToken
,
@RequestParam
(
"serviceOrgId"
)
String
serviceOrgId
);
BeanR
<
ServiceOrgDetail
>
serviceOrgDetail
(
@RequestHeader
(
name
=
"accessToken"
)
String
accessToken
,
@RequestParam
(
"serviceOrgId"
)
String
serviceOrgId
);
/* ***********************************工单相关************************************** */
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment