wanghc
2023-03-08 65d297b263d224e2d84d4d2ab941da36544e8d23
浦发分行账单服务对外接口调整
8 files renamed
10 files modified
55 ■■■■ changed files
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/controller/BillController.java 3 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/controller/PublicController.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/controller/TradeController.java 6 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/IBillService.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/ITradeService.java 4 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/impl/BillServiceImpl.java 4 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/impl/TradeServiceImpl.java 4 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/wsdl/ESBServerPortType.java 8 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/util/ObjectFactory.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/bill/BillApiRespVo.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspPymtTrnRsltQryType.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspSvcHeaderType.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspWHPymtTrnRsltQryType.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/SubSvcRetInfoType.java 2 ●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/test/java/com/jttech/pfcs/services/WsdlTest.java 4 ●●●● patch | view | raw | blame | history
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/controller/BillController.java
@@ -10,8 +10,7 @@
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.jttech.pfcs.services.IPublicService;
import com.jttech.pfcs.vo.ResponseVo;
import com.jttech.pfcs.vo.resp.ResponseVo;
/**
 * 账单
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/controller/PublicController.java
@@ -8,7 +8,7 @@
import org.springframework.web.bind.annotation.RestController;
import com.jttech.pfcs.services.IPublicService;
import com.jttech.pfcs.vo.ResponseVo;
import com.jttech.pfcs.vo.resp.ResponseVo;
/**
 * @author wanghc
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/controller/TradeController.java
@@ -1,11 +1,11 @@
package com.jttech.pfcs.controller;
import com.jttech.pfcs.services.ITradeService;
import com.jttech.pfcs.vo.ResponseVo;
import com.jttech.pfcs.vo.resp.ResponseVo;
import com.jttech.pfcs.vo.req.trade.ReqEPCSnglTranType;
import com.jttech.pfcs.vo.req.trade.ReqTranQryType;
import com.jttech.pfcs.vo.resp.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.RspTranQryType;
import com.jttech.pfcs.vo.resp.trade.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.trade.RspTranQryType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/IBillService.java
@@ -1,6 +1,6 @@
package com.jttech.pfcs.services;
import com.jttech.pfcs.vo.ResponseVo;
import com.jttech.pfcs.vo.resp.ResponseVo;
import com.jttech.pfcs.vo.req.bill.BillApiReqVo;
/**
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/ITradeService.java
@@ -2,8 +2,8 @@
import com.jttech.pfcs.vo.req.trade.ReqEPCSnglTranType;
import com.jttech.pfcs.vo.req.trade.ReqTranQryType;
import com.jttech.pfcs.vo.resp.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.RspTranQryType;
import com.jttech.pfcs.vo.resp.trade.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.trade.RspTranQryType;
/**
 * @author wanghc
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/impl/BillServiceImpl.java
@@ -8,9 +8,9 @@
import com.alibaba.fastjson.JSONObject;
import com.jttech.pfcs.services.IBillService;
import com.jttech.pfcs.vo.ResponseVo;
import com.jttech.pfcs.vo.resp.ResponseVo;
import com.jttech.pfcs.vo.req.bill.BillApiReqVo;
import com.jttech.pfcs.vo.req.bill.BillApiRespVo;
import com.jttech.pfcs.vo.resp.bill.BillApiRespVo;
import okhttp3.*;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/impl/TradeServiceImpl.java
@@ -5,8 +5,8 @@
import com.jttech.pfcs.services.wsdl.S080030795;
import com.jttech.pfcs.vo.req.trade.ReqEPCSnglTranType;
import com.jttech.pfcs.vo.req.trade.ReqTranQryType;
import com.jttech.pfcs.vo.resp.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.RspTranQryType;
import com.jttech.pfcs.vo.resp.trade.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.trade.RspTranQryType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.InitializingBean;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/services/wsdl/ESBServerPortType.java
@@ -5,10 +5,10 @@
import com.jttech.pfcs.vo.req.trade.ReqPymtTrnRsltQryType;
import com.jttech.pfcs.vo.req.trade.ReqTranQryType;
import com.jttech.pfcs.vo.req.trade.ReqWHPymtTrnRsltQryType;
import com.jttech.pfcs.vo.resp.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.RspPymtTrnRsltQryType;
import com.jttech.pfcs.vo.resp.RspTranQryType;
import com.jttech.pfcs.vo.resp.RspWHPymtTrnRsltQryType;
import com.jttech.pfcs.vo.resp.trade.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.trade.RspPymtTrnRsltQryType;
import com.jttech.pfcs.vo.resp.trade.RspTranQryType;
import com.jttech.pfcs.vo.resp.trade.RspWHPymtTrnRsltQryType;
import javax.jws.WebMethod;
import javax.jws.WebParam;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/util/ObjectFactory.java
@@ -9,7 +9,7 @@
import com.jttech.pfcs.metadata.ReqHeaderType;
import com.jttech.pfcs.metadata.RspHeaderType;
import com.jttech.pfcs.vo.req.trade.*;
import com.jttech.pfcs.vo.resp.*;
import com.jttech.pfcs.vo.resp.trade.*;
/**
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/ResponseVo.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/ResponseVo.java
@@ -1,4 +1,4 @@
package com.jttech.pfcs.vo;
package com.jttech.pfcs.vo.resp;
import java.io.Serializable;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/bill/BillApiRespVo.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/req/bill/BillApiRespVo.java
@@ -1,4 +1,4 @@
package com.jttech.pfcs.vo.req.bill;
package com.jttech.pfcs.vo.resp.bill;
import com.alibaba.fastjson.annotation.JSONField;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/RspEPCSnglTranType.java
@@ -1,5 +1,5 @@
package com.jttech.pfcs.vo.resp;
package com.jttech.pfcs.vo.resp.trade;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspPymtTrnRsltQryType.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/RspPymtTrnRsltQryType.java
@@ -1,5 +1,5 @@
package com.jttech.pfcs.vo.resp;
package com.jttech.pfcs.vo.resp.trade;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspSvcHeaderType.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/RspSvcHeaderType.java
@@ -1,5 +1,5 @@
package com.jttech.pfcs.vo.resp;
package com.jttech.pfcs.vo.resp.trade;
import java.util.ArrayList;
import java.util.List;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/RspTranQryType.java
@@ -1,5 +1,5 @@
package com.jttech.pfcs.vo.resp;
package com.jttech.pfcs.vo.resp.trade;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspWHPymtTrnRsltQryType.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/RspWHPymtTrnRsltQryType.java
@@ -1,5 +1,5 @@
package com.jttech.pfcs.vo.resp;
package com.jttech.pfcs.vo.resp.trade;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/SubSvcRetInfoType.java
File was renamed from cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/SubSvcRetInfoType.java
@@ -1,5 +1,5 @@
package com.jttech.pfcs.vo.resp;
package com.jttech.pfcs.vo.resp.trade;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
cmci-pfcs-gateway/src/test/java/com/jttech/pfcs/services/WsdlTest.java
@@ -5,8 +5,8 @@
import com.jttech.pfcs.vo.req.trade.ReqEPCSnglTranType;
import com.jttech.pfcs.vo.req.trade.ReqSvcHeaderType;
import com.jttech.pfcs.vo.req.trade.ReqTranQryType;
import com.jttech.pfcs.vo.resp.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.RspTranQryType;
import com.jttech.pfcs.vo.resp.trade.RspEPCSnglTranType;
import com.jttech.pfcs.vo.resp.trade.RspTranQryType;
/**
 * @author wanghc