Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-core
Overview
Overview
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
isc-v3.1-tmp
isc-core
Commits
2c760646
Commit
2c760646
authored
Sep 27, 2024
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
a06d8e69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
IAutoClient.java
...om/brilliance/isc/automatic/engine/feign/IAutoClient.java
+3
-2
IGmgfFeign.java
...n/java/com/brilliance/isc/common/esb/gmgf/IGmgfFeign.java
+4
-5
No files found.
isc-common-service/src/main/java/com/brilliance/isc/automatic/engine/feign/IAutoClient.java
View file @
2c760646
...
...
@@ -6,6 +6,7 @@ import com.brilliance.isc.vo.automatic.TrnrelRequestVo;
import
com.brilliance.isc.vo.automatic.TrnrelResultVo
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestHeader
;
import
javax.ws.rs.HeaderParam
;
...
...
@@ -14,7 +15,7 @@ public interface IAutoClient {
* 自动化复核feign调用
*/
@PostMapping
(
"/webapi/trnrel/autorelrow"
)
ResponseSet
<
TrnrelResultVo
>
autoRelrow
(
@RequestBody
TrnrelRequestVo
trnrelRequestVo
,
@
HeaderParam
(
"AUTO_USR"
)
String
AUTO_USR
);
ResponseSet
<
TrnrelResultVo
>
autoRelrow
(
@RequestBody
TrnrelRequestVo
trnrelRequestVo
,
@
RequestHeader
(
"AUTO_USR"
)
String
AUTO_USR
);
/**
* 转电商并发送中台
...
...
@@ -22,6 +23,6 @@ public interface IAutoClient {
* @return
*/
@PostMapping
(
"/webapi/sptcpt/tranDsAndSendZt"
)
ResponseSet
<
Boolean
>
tranDsAndSendZt
(
@RequestBody
Que
que
,
@
HeaderParam
(
"AUTO_USR"
)
String
AUTO_USR
);
ResponseSet
<
Boolean
>
tranDsAndSendZt
(
@RequestBody
Que
que
,
@
RequestHeader
(
"AUTO_USR"
)
String
AUTO_USR
);
}
isc-common-service/src/main/java/com/brilliance/isc/common/esb/gmgf/IGmgfFeign.java
View file @
2c760646
...
...
@@ -5,7 +5,6 @@ import org.springframework.stereotype.Component;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
@RequestMapping
(
"/webapi/jk"
)
public
interface
IGmgfFeign
{
/**
* Ge57 报关单参考余额查询
...
...
@@ -13,7 +12,7 @@ public interface IGmgfFeign {
* @param innerReqGe57
* @return
*/
@PostMapping
(
"/GE57"
)
@PostMapping
(
"/
webapi/jk/
GE57"
)
InnerRes
<
InnerResGe57
>
callGe57
(
InnerReq
<
InnerReqGe57
>
innerReqGe57
);
/**
...
...
@@ -22,7 +21,7 @@ public interface IGmgfFeign {
* @param innerReqGe59
* @return
*/
@PostMapping
(
"/GE59"
)
@PostMapping
(
"/
webapi/jk/
GE59"
)
InnerRes
<
InnerResGe59
>
callGe59
(
InnerReq
<
InnerReqGe59
>
innerReqGe59
);
/**
...
...
@@ -31,7 +30,7 @@ public interface IGmgfFeign {
* @param innerReqGe67
* @return
*/
@PostMapping
(
"/GE67"
)
@PostMapping
(
"/
webapi/jk/
GE67"
)
InnerRes
<
InnerResGe67
>
callGe67
(
InnerReq
<
InnerReqGe67
>
innerReqGe67
);
/**
...
...
@@ -40,6 +39,6 @@ public interface IGmgfFeign {
* @param innerReqGe69
* @return
*/
@PostMapping
(
"/GE69"
)
@PostMapping
(
"/
webapi/jk/
GE69"
)
InnerRes
<
InnerResGe69
>
callGe69
(
InnerReq
<
InnerReqGe69
>
innerReqGe69
);
}
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