Commit 2c760646 by xiaotong

修改

parent a06d8e69
......@@ -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);
}
......@@ -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);
}
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