Browse Source

记录临时日志,后续再调整

MSY 3 years ago
parent
commit
7a360a82cc

+ 8 - 0
src/main/java/com/jkcredit/invoice/service/upService/impl/CommInterFaceImpl.java

@@ -5,9 +5,11 @@ import cn.com.taiji.sdk.comm.ETCCommHelper;
 import cn.com.taiji.sdk.model.comm.protocol.eoms.company.*;
 import com.jkcredit.invoice.service.upService.CommInterFace;
 import com.jkcredit.invoice.util.RespR;
+import lombok.extern.slf4j.Slf4j;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
+@Slf4j
 @Service("commInterFace")
 public class CommInterFaceImpl implements CommInterFace{
     @Override
@@ -16,6 +18,7 @@ public class CommInterFaceImpl implements CommInterFace{
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             CompanyQueryResponse response= ETCCommHelper.upload(fileName, companyQueryRequest, CompanyQueryResponse.class);
+            log.info("CommInterFaceImpl.companyQuery上游接口返回:{},请求参数:{}", response.toString(), companyQueryRequest.toString());
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -32,6 +35,7 @@ public class CommInterFaceImpl implements CommInterFace{
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             CompanyAddResponse response=ETCCommHelper.upload(fileName, companyAddRequest, CompanyAddResponse.class);
+            log.info("CommInterFaceImpl.addCompany上游接口返回:{},请求参数:{}", response.toString(), companyAddRequest.toString());
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -48,6 +52,8 @@ public class CommInterFaceImpl implements CommInterFace{
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             B2bContractAddResponse response=ETCCommHelper.upload(fileName, contractAddRequest, B2bContractAddResponse.class);
+            log.info("CommInterFaceImpl.b2bContractAdd上游接口返回:{},请求参数:{}", response.toString(), contractAddRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -64,6 +70,8 @@ public class CommInterFaceImpl implements CommInterFace{
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             B2bContractQueryResponse response=ETCCommHelper.upload(fileName, b2bContractQueryRequest, B2bContractQueryResponse.class);
+            log.info("CommInterFaceImpl.b2bContractQuery上游接口返回:{},请求参数:{}", response.toString(), b2bContractQueryRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();

+ 21 - 0
src/main/java/com/jkcredit/invoice/service/upService/impl/NoCarInterfaceImpl.java

@@ -9,9 +9,12 @@ import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleRegisterResponse;
 import cn.com.taiji.sdk.model.comm.protocol.tts.waybill.*;
 import com.jkcredit.invoice.service.upService.NoCarInterface;
 import com.jkcredit.invoice.util.RespR;
+import lombok.extern.slf4j.Slf4j;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
+
+@Slf4j
 @Service("noCarInterface")
 public class NoCarInterfaceImpl implements NoCarInterface {
 
@@ -21,6 +24,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             VehicleRegisterResponse response=ETCCommHelper.upload(fileName, registerRequest, VehicleRegisterResponse.class);
+            log.info("NoCarInterfaceImpl.vehicleRegister上游接口返回:{},请求参数:{}", response.toString(), registerRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -37,6 +42,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             VehicleQueryResponse response=ETCCommHelper.upload(fileName, vehicleQueryRequest, VehicleQueryResponse.class);
+            log.info("NoCarInterfaceImpl.vehicleQuery上游接口返回:{},请求参数:{}", response.toString(), vehicleQueryRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -53,6 +60,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillStartResponse response=ETCCommHelper.upload(fileName, waybillStartRequest, WaybillStartResponse.class);
+            log.info("NoCarInterfaceImpl.waybillStart上游接口返回:{},请求参数:{}", response.toString(), waybillStartRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -69,6 +78,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillEndResponse response=ETCCommHelper.upload(fileName, waybillEndRequest, WaybillEndResponse.class);
+            log.info("NoCarInterfaceImpl.waybillEnd上游接口返回:{},请求参数:{}", response.toString(), waybillEndRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -85,6 +96,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillHistoryStartResponse response=ETCCommHelper.upload(fileName, waybillHistoryStartRequest, WaybillHistoryStartResponse.class);
+            log.info("NoCarInterfaceImpl.waybillHistoryStart上游接口返回:{},请求参数:{}", response.toString(), waybillHistoryStartRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -101,6 +114,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillHistoryEndResponse response=ETCCommHelper.upload(fileName, waybillHistoryEndRequest, WaybillHistoryEndResponse.class);
+            log.info("NoCarInterfaceImpl.waybillHistoryEnd上游接口返回:{},请求参数:{}", response.toString(), waybillHistoryEndRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -117,6 +132,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillNumFindInvoiceResponse response=ETCCommHelper.upload(fileName, waybillNumFindInvoiceRequest, WaybillNumFindInvoiceResponse.class);
+            log.info("NoCarInterfaceImpl.waybillNumFindInvoice上游接口返回:{},请求参数:{}", response.toString(), waybillNumFindInvoiceRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -133,6 +150,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillInvoiceRedQueryResponse response=ETCCommHelper.upload(fileName, waybillInvoiceRedQueryRequest, WaybillInvoiceRedQueryResponse.class);
+            log.info("NoCarInterfaceImpl.waybillInvoiceRedQuery上游接口返回:{},请求参数:{}", response.toString(), waybillInvoiceRedQueryRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
@@ -149,6 +168,8 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillCountQueryResponse response=ETCCommHelper.upload(fileName, waybillCountQueryRequest, WaybillCountQueryResponse.class);
+            log.info("NoCarInterfaceImpl.waybillCountQuery上游接口返回:{},请求参数:{}", response.toString(), waybillCountQueryRequest.toString());
+
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();

+ 29 - 0
src/main/java/com/jkcredit/invoice/service/upService/impl/SelfCarInterfaceImpl.java

@@ -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();