|
@@ -9,9 +9,12 @@ import cn.com.taiji.sdk.model.comm.protocol.tts.trade.service.CardTradeRequest;
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.trade.service.CardTradeResponse;
|
|
|
import com.jkcredit.invoice.service.upService.SelfCarInterface;
|
|
|
import com.jkcredit.invoice.util.RespR;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
+
|
|
|
+@Slf4j
|
|
|
@Service("selfCarInterface")
|
|
|
public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
@Override
|
|
@@ -20,6 +23,8 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
CardBindQueryListToBResponse response=ETCCommHelper.upload(fileName, cardBindQueryListToBRequest, CardBindQueryListToBResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.cardBindQueryListToB上游接口返回:{},请求参数:{}", response.toString(), cardBindQueryListToBRequest.toString());
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -36,6 +41,8 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
CardQueryCardToBResponse response=ETCCommHelper.upload(fileName, cardQueryCardToBRequest, CardQueryCardToBResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.cardQueryCardToB上游接口返回:{},请求参数:{}", response.toString(), cardQueryCardToBRequest.toString());
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -52,6 +59,9 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
CardBindingToBResponse response=ETCCommHelper.upload(fileName, cardBindingToBRequest, CardBindingToBResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.cardBindingToB上游接口返回:{},请求参数:{}", response.toString(), cardBindingToBRequest.toString());
|
|
|
+
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -68,6 +78,9 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
CardValidCodeToBResponse response=ETCCommHelper.upload(fileName, cardValidCodeToBRequest, CardValidCodeToBResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.cardValidCodeToB上游接口返回:{},请求参数:{}", response.toString(), cardValidCodeToBRequest.toString());
|
|
|
+
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -84,6 +97,9 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
CardUnbindToBResponse response=ETCCommHelper.upload(fileName, cardUnbindToBRequest, CardUnbindToBResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.cardUnbindToB上游接口返回:{},请求参数:{}", response.toString(), cardUnbindToBRequest.toString());
|
|
|
+
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -100,6 +116,9 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
CardTradeResponse response=ETCCommHelper.upload(fileName, cardTradeRequest, CardTradeResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.cardTrade上游接口返回:{},请求参数:{}", response.toString(), cardTradeRequest.toString());
|
|
|
+
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -116,6 +135,9 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
B2BInvoiceApplyResponse response=ETCCommHelper.upload(fileName, b2BInvoiceApplyRequest, B2BInvoiceApplyResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.b2BInvoiceApply上游接口返回:{},请求参数:{}", response.toString(), b2BInvoiceApplyRequest.toString());
|
|
|
+
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -132,6 +154,9 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
B2BInvoiceQueryResponse response=ETCCommHelper.upload(fileName, b2BInvoiceQueryRequest, B2BInvoiceQueryResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.b2BInvoiceQuery上游接口返回:{},请求参数:{}", response.toString(), b2BInvoiceQueryRequest.toString());
|
|
|
+
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -148,6 +173,8 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
B2BInvoiceQueryByApplyResponse response=ETCCommHelper.upload(fileName, b2BInvoiceQueryByApplyRequest, B2BInvoiceQueryByApplyResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.b2bContractQuery上游接口返回:{},请求参数:{}", response.toString(), b2BInvoiceQueryByApplyRequest.toString());
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
@@ -164,6 +191,8 @@ public class SelfCarInterfaceImpl implements SelfCarInterface{
|
|
|
try {
|
|
|
//(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
|
|
|
B2bInvoicePackageResponse response=ETCCommHelper.upload(fileName, b2bInvoicePackageRequest, B2bInvoicePackageResponse.class);
|
|
|
+ log.info("SelfCarInterfaceImpl.b2bInvoicePackage上游接口返回:{},请求参数:{}", response.toString(), b2bInvoicePackageRequest.toString());
|
|
|
+
|
|
|
return new RespR<>(response);
|
|
|
} catch (IOException e) {
|
|
|
e.printStackTrace();
|