Bläddra i källkod

20211205后端日志更新代码_1

mashengyi 3 år sedan
förälder
incheckning
2242867354
31 ändrade filer med 703 tillägg och 463 borttagningar
  1. 7 2
      src/main/java/com/jkcredit/invoice/annotation/annotationDes/AuthenticationInterceptor.java
  2. 7 4
      src/main/java/com/jkcredit/invoice/component/SendMailService.java
  3. 6 4
      src/main/java/com/jkcredit/invoice/config/GlobalExceptionHandler.java
  4. 11 11
      src/main/java/com/jkcredit/invoice/controller/localBussiness/NoCarController.java
  5. 7 4
      src/main/java/com/jkcredit/invoice/credit/InterfaceCheckServer.java
  6. 11 8
      src/main/java/com/jkcredit/invoice/credit/SimpleCORSFilter.java
  7. 15 19
      src/main/java/com/jkcredit/invoice/credit/custInterface/CustomerInterLowerServiceImpl.java
  8. 36 33
      src/main/java/com/jkcredit/invoice/credit/custInterface/NoCarInterServiceImpl.java
  9. 31 32
      src/main/java/com/jkcredit/invoice/credit/custInterface/SelfCarInterServiceImpl.java
  10. 8 3
      src/main/java/com/jkcredit/invoice/service/customer/impl/CustomerOperServiceImpl.java
  11. 25 24
      src/main/java/com/jkcredit/invoice/service/customer/impl/CustomerServiceImpl.java
  12. 13 18
      src/main/java/com/jkcredit/invoice/service/lowerService/impl/CustomerLowerServiceImpl.java
  13. 43 42
      src/main/java/com/jkcredit/invoice/service/lowerService/impl/NoCarServiceImpl.java
  14. 44 42
      src/main/java/com/jkcredit/invoice/service/lowerService/impl/SelfCarServiceLImpl.java
  15. 6 2
      src/main/java/com/jkcredit/invoice/service/manager/impl/ParamServiceImpl.java
  16. 6 2
      src/main/java/com/jkcredit/invoice/service/nocar/impl/NoCarBillWayImportServiceImpl.java
  17. 19 17
      src/main/java/com/jkcredit/invoice/service/nocar/impl/NoCarBillWayServiceImpl.java
  18. 27 19
      src/main/java/com/jkcredit/invoice/service/upService/impl/CommInterFaceImpl.java
  19. 41 39
      src/main/java/com/jkcredit/invoice/service/upService/impl/NoCarInterfaceImpl.java
  20. 46 43
      src/main/java/com/jkcredit/invoice/service/upService/impl/SelfCarInterfaceImpl.java
  21. 6 2
      src/main/java/com/jkcredit/invoice/service/user/impl/UserServiceImpl.java
  22. 16 13
      src/main/java/com/jkcredit/invoice/task/ScheduledBillTask.java
  23. 0 7
      src/main/java/com/jkcredit/invoice/util/DownExcelTemplateUtil.java
  24. 0 2
      src/main/java/com/jkcredit/invoice/util/FileHandleUtil.java
  25. 2 3
      src/main/java/com/jkcredit/invoice/util/HttpUtil.java
  26. 37 0
      src/main/java/com/jkcredit/invoice/util/LogFileName.java
  27. 19 0
      src/main/java/com/jkcredit/invoice/util/LoggerUtil.java
  28. 0 2
      src/main/java/com/jkcredit/invoice/util/PlateCheckUtil.java
  29. 0 12
      src/main/java/com/jkcredit/invoice/util/ReadExcelUtil.java
  30. 6 9
      src/main/java/com/jkcredit/invoice/util/WebFileDownLoadUtils.java
  31. 208 45
      src/main/resources/logback-spring.xml

+ 7 - 2
src/main/java/com/jkcredit/invoice/annotation/annotationDes/AuthenticationInterceptor.java

@@ -5,7 +5,9 @@ import com.jkcredit.invoice.annotation.LoginRequired;
 import com.jkcredit.invoice.common.CommonConstants;
 import com.jkcredit.invoice.model.entity.user.User;
 import com.jkcredit.invoice.service.user.UserService;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.redis.core.RedisTemplate;
 import org.springframework.web.method.HandlerMethod;
@@ -22,8 +24,11 @@ import java.lang.reflect.Method;
  * @create: 2019-05-29 13:52
  * @version: V1.0
  **/
-@Slf4j
 public class AuthenticationInterceptor implements HandlerInterceptor {
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+
     @Autowired
     private UserService userService;
     @Autowired

+ 7 - 4
src/main/java/com/jkcredit/invoice/component/SendMailService.java

@@ -1,6 +1,8 @@
 package com.jkcredit.invoice.component;
 
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.mail.javamail.JavaMailSenderImpl;
@@ -8,9 +10,10 @@ import org.springframework.mail.javamail.MimeMessageHelper;
 import org.springframework.stereotype.Component;
 import javax.mail.MessagingException;
 import javax.mail.internet.MimeMessage;
-@Slf4j
 @Component
 public class SendMailService {
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+    
     @Autowired
     private JavaMailSenderImpl javaMailSender;
     @Value("${spring.mail.username}")
@@ -23,8 +26,8 @@ public class SendMailService {
         helper.setTo(emailStr);
         helper.setSubject(company+"备案提交");
         helper.setText(contents,true);
-        log.info("before send emil");
+        MIX_LOG.info("before send emil");
         javaMailSender.send(message);
-        log.info("send emil");
+        MIX_LOG.info("send emil");
     }
 }

+ 6 - 4
src/main/java/com/jkcredit/invoice/config/GlobalExceptionHandler.java

@@ -1,7 +1,9 @@
 package com.jkcredit.invoice.config;
 
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.http.HttpStatus;
 import org.springframework.validation.BindException;
 import org.springframework.validation.FieldError;
@@ -16,9 +18,9 @@ import java.util.List;
  * @create: 2019-05-29 13:43
  * @version: V1.0
  **/
-@Slf4j
 @RestControllerAdvice
 public class GlobalExceptionHandler {
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
 
     /**
      * 全局异常
@@ -28,7 +30,7 @@ public class GlobalExceptionHandler {
     @ExceptionHandler(Exception.class)
     @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
     public RespR exception(Exception e) {
-        log.error("全局异常信息,异常信息为:{}", e.getMessage(), e);
+        MIX_LOG.error("全局异常信息,异常信息为:{}", e.getMessage(), e);
         return new RespR<>(e);
     }
 
@@ -43,7 +45,7 @@ public class GlobalExceptionHandler {
         List<FieldError> fieldErrors = exception.getBindingResult().getFieldErrors();
         RespR result = new RespR();
         result.setMsg(fieldErrors.get(0).getDefaultMessage());
-        log.warn(fieldErrors.get(0).getDefaultMessage());
+        MIX_LOG.warn(fieldErrors.get(0).getDefaultMessage());
         return result;
     }
 

+ 11 - 11
src/main/java/com/jkcredit/invoice/controller/localBussiness/NoCarController.java

@@ -9,7 +9,6 @@ import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
 import com.jkcredit.invoice.model.entity.Calculate.NoCarCalculateInfor;
 import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
 import com.jkcredit.invoice.model.entity.customer.CustomerOper;
-import com.jkcredit.invoice.model.entity.customer.CustomerRec;
 import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
 import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
 import com.jkcredit.invoice.service.CalculateInfor.NoCarCalculateInfoService;
@@ -19,14 +18,14 @@ import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
 import com.jkcredit.invoice.service.nocar.NoCarBillWayService;
 import com.jkcredit.invoice.service.nocar.NoCarRecService;
 import com.jkcredit.invoice.service.nocar.NocarInvoiceService;
-import com.jkcredit.invoice.util.ReadExcelUtil;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
-import lombok.extern.slf4j.Slf4j;
 import org.apache.poi.util.IOUtils;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.util.ResourceUtils;
 import org.springframework.util.StringUtils;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.multipart.MultipartFile;
@@ -36,14 +35,15 @@ import java.io.*;
 import java.net.URLEncoder;
 import java.text.DateFormat;
 import java.text.SimpleDateFormat;
-import java.util.ArrayList;
-import java.util.Base64;
 import java.util.List;
-@Slf4j
 @Api(tags = "无车操作")
 @RestController
 @RequestMapping(value = {"/noCar"})
 public class NoCarController {
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+    
     @Autowired
     NoCarRecService noCarRecService;
 
@@ -376,7 +376,7 @@ public class NoCarController {
             params.setHeadRows(1);
             params.setKeyIndex(2);
             List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
-            log.info("1111111111"+list.size());
+            MIX_LOG.info("1111111111"+list.size());
             buildDate(list);
             RespR respR = noCarBillWayService.batchHsitoryBillWay(list,customerName);
             return respR;
@@ -402,7 +402,7 @@ public class NoCarController {
             params.setKeyIndex(2);
             List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
             buildDateEnd(list);
-            log.info("1111111111"+list.size());
+            MIX_LOG.info("1111111111"+list.size());
             RespR respR = noCarBillWayService.batchBillWayEnd(list,customerName);
             return respR;
         }catch (Exception e){
@@ -425,7 +425,7 @@ public class NoCarController {
                 noCarWayBill.setBillNum(noCarWayBill.getBillNum().trim());
             }catch (Exception e){
                 sb.append(noCarWayBill.getBillNum()+"#");
-                log.info(noCarWayBill.getBillNum());
+                MIX_LOG.info(noCarWayBill.getBillNum());
                 i++;
             }
 
@@ -443,7 +443,7 @@ public class NoCarController {
                 noCarWayBill.setPredictEndTime(format.format(noCarWayBill.getActEndTimeDate()));
             }catch (Exception e){
                 sb.append(noCarWayBill.getBillNum()+"#");
-                log.info(noCarWayBill.getBillNum());
+                MIX_LOG.info(noCarWayBill.getBillNum());
                 i++;
             }
 

+ 7 - 4
src/main/java/com/jkcredit/invoice/credit/InterfaceCheckServer.java

@@ -4,14 +4,15 @@ import com.jkcredit.invoice.common.DataResult;
 import com.jkcredit.invoice.credit.custInterface.CustomerInterLowerService;
 import com.jkcredit.invoice.credit.custInterface.NoCarInterService;
 import com.jkcredit.invoice.credit.custInterface.SelfCarInterService;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
-@Slf4j
 @Service("interfaceCheckServer")
 public class InterfaceCheckServer {
-
+    Logger JUMP_LOG = LoggerUtil.logger(LogFileName.JUMP_LOG);
 
      @Autowired
      CustomerInterLowerService customerInterLowerService;
@@ -24,7 +25,7 @@ public class InterfaceCheckServer {
     //跳转到对应的Service服务处理逻辑
     public  DataResult doJumpHandler(String appKey, String api, String data,String requestid ) {
 
-        log.info("[-InterfaceCheckServer.doJumpHandler-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data + " ,requestid=" +requestid);
+        JUMP_LOG.info("[-InterfaceCheckServer.doJumpHandler-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data + " ,requestid=" +requestid);
 
 
         DataResult result;
@@ -108,6 +109,8 @@ public class InterfaceCheckServer {
                 break;
         }
 
+        JUMP_LOG.info("[-InterfaceCheckServer.doJumpHandler-] result appKey=" + appKey + " ,api=" + api + " ,data=" +data + " ,requestid=" +requestid+ " ,result="+result);
+
         return result;
 
     }

+ 11 - 8
src/main/java/com/jkcredit/invoice/credit/SimpleCORSFilter.java

@@ -8,8 +8,10 @@ import com.jkcredit.invoice.common.RequestApi;
 import com.jkcredit.invoice.common.ResponseCode;
 import com.jkcredit.invoice.model.entity.customer.Customer;
 import com.jkcredit.invoice.service.customer.CustomerService;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import org.apache.commons.lang3.StringUtils;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 
 import javax.servlet.*;
@@ -29,9 +31,10 @@ import java.util.regex.Pattern;
  * @Author: mashengyi
  * @Date: 2021/9/12
  */
-@Slf4j
 public class SimpleCORSFilter implements Filter {
 
+    Logger GATEWAY_LOG = LoggerUtil.logger(LogFileName.GATEWAY_LOG);
+
     @Autowired
     CustomerService customerService;
 
@@ -234,16 +237,16 @@ public class SimpleCORSFilter implements Filter {
             RequestApi requestApi = new RequestApi();
             ResponseCode responseCode = checkToken(httpRequest, httpResponse,startTime,flagUuid,requestApi);
             if (!Objects.equals(responseCode, ResponseCode.SUCCESS)) {
-                log.error("FILE - SimpleCORSFilterError = {}", responseCode + " ,requestURI = {" + httpRequest.getRequestURI() +"}");
+                GATEWAY_LOG.error("FILE - SimpleCORSFilterError = {}", responseCode + " ,requestURI = {" + httpRequest.getRequestURI() +"}");
                 //httpResponse.setStatus(HttpServletResponse.SC_BAD_REQUEST);
                 httpResponse.setContentType("application/json; charset=utf-8");
                 httpResponse.setCharacterEncoding("utf-8");
                 PrintWriter writer = httpResponse.getWriter();
                 writer.write(new ObjectMapper().writeValueAsString(ApiResult.failure(responseCode,requestid)));
-                log.error("[FILE - SimpleCORSFilter-] return result=" + responseCode.toString() + " , param is api="+  requestApi.getApi() + " , data=" + requestApi.getData() + " , appKey=" + requestApi.getAppKey() + " , appSecret=" + requestApi.getAppSecret() +  " ,timeCost=" +(System.currentTimeMillis()-startTime) + "ms" +" , flag=" + flagUuid);
+                GATEWAY_LOG.error("[FILE - SimpleCORSFilter-] return result=" + responseCode.toString() + " , param is api="+  requestApi.getApi() + " , data=" + requestApi.getData() + " , appKey=" + requestApi.getAppKey() + " , appSecret=" + requestApi.getAppSecret() +  " ,timeCost=" +(System.currentTimeMillis()-startTime) + "ms" +" , flag=" + flagUuid);
                 return;
             }else{
-                log.info("SUCCESS - SimpleCORSFilterWarn = {}", responseCode + " ,requestURI = {" + httpRequest.getRequestURI() +"}");
+                GATEWAY_LOG.info("SUCCESS - SimpleCORSFilterWarn = {}", responseCode + " ,requestURI = {" + httpRequest.getRequestURI() +"}");
 
 
                 DataResult dataResult =  interfaceCheckServer.doJumpHandler(requestApi.getAppKey(),requestApi.getApi(),requestApi.getData(),requestid);
@@ -259,7 +262,7 @@ public class SimpleCORSFilter implements Filter {
                 httpResponse.setCharacterEncoding("utf-8");
                 PrintWriter writer = httpResponse.getWriter();
                 writer.write(new ObjectMapper().writeValueAsString(ApiResult.failure(dataResult)));
-                log.info("[SUCCESS - SimpleCORSFilter-] return result=" + dataResult.toString() + " , param is api="+  requestApi.getApi() + " , data=" + requestApi.getData() + " , appKey=" + requestApi.getAppKey() + " , appSecret=" + requestApi.getAppSecret() +  " ,timeCost=" +(System.currentTimeMillis()-startTime) + "ms" +" , flag=" + flagUuid);
+                GATEWAY_LOG.info("[SUCCESS - SimpleCORSFilter-] return result=" + dataResult.toString() + " , param is api="+  requestApi.getApi() + " , data=" + requestApi.getData() + " , appKey=" + requestApi.getAppKey() + " , appSecret=" + requestApi.getAppSecret() +  " ,timeCost=" +(System.currentTimeMillis()-startTime) + "ms" +" , flag=" + flagUuid);
                 return;
             }
         }
@@ -371,7 +374,7 @@ public class SimpleCORSFilter implements Filter {
             requestApi.setData(data);
             requestApi.setAppSecret(appSecret);
             requestApi.setAppKey(appKey);
-            log.info("[-SimpleCORSFilter-] query param api=" + api + " , data=" + data + " , appKey=" + appKey + " , appSecret=" + appSecret + " , flag=" + flag);
+            GATEWAY_LOG.info("[-SimpleCORSFilter-] query param api=" + api + " , data=" + data + " , appKey=" + appKey + " , appSecret=" + appSecret + " , flag=" + flag);
             if (StringUtils.isEmpty(api) || StringUtils.isEmpty(data) || StringUtils.isEmpty(appKey) || StringUtils.isEmpty(appSecret)) {
                 return ResponseCode.UNKNOWN_ERROR;
             }
@@ -396,7 +399,7 @@ public class SimpleCORSFilter implements Filter {
             }
 
         } catch (Exception e) {
-            log.error("Token 校验失败,{}:{}", e.getClass().getName(), e.getMessage());
+            GATEWAY_LOG.error("Token 校验失败,{}:{}", e.getClass().getName(), e.getMessage());
             return ResponseCode.MEDIA_TYPE_NOT_SUPPORT_ERROR;
         }
         return ResponseCode.SUCCESS;

+ 15 - 19
src/main/java/com/jkcredit/invoice/credit/custInterface/CustomerInterLowerServiceImpl.java

@@ -2,32 +2,28 @@ package com.jkcredit.invoice.credit.custInterface;
 
 import com.alibaba.fastjson.JSONObject;
 import com.jkcredit.invoice.common.DataResult;
-import com.jkcredit.invoice.common.ResponseCode;
 import com.jkcredit.invoice.mapper.customer.CustomerMapper;
 import com.jkcredit.invoice.mapper.customer.CustomerRecMapper;
 import com.jkcredit.invoice.model.entity.customer.Customer;
 import com.jkcredit.invoice.model.entity.customer.CustomerRec;
 import com.jkcredit.invoice.service.customer.CustomerService;
 import com.jkcredit.invoice.service.lowerService.CustomeLowerService;
-import com.jkcredit.invoice.util.Base64Util;
-import com.jkcredit.invoice.util.DateUtil;
-import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.*;
 import org.apache.commons.lang3.StringUtils;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
-import java.text.SimpleDateFormat;
 import java.util.ArrayList;
-import java.util.Date;
 import java.util.List;
-import java.util.UUID;
 
 
-@Slf4j
 @Service("customerInterLowerService")
 public class CustomerInterLowerServiceImpl implements CustomerInterLowerService {
 
+    Logger QUERY_LOG = LoggerUtil.logger(LogFileName.QUERY_LOG);
+
+
     @Autowired
     CustomeLowerService lowerService;
 
@@ -61,7 +57,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
         result.setMsg("无法认证");
 
         try {
-            log.info("[-CustomerInterLowerServiceImpl.customeInterRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeInterRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
 
             Integer interType =  0;//0-接口 1-平台 3.手工录入
@@ -146,7 +142,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
             customerRecs.add(customerRec);
             RespR rs = lowerService.customeRec(customerRecs);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-CustomerInterLowerServiceImpl.customeInterRec-] result is "
+            QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeInterRec-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
 
@@ -154,7 +150,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
             if(null != rs && rs.getCode() == 0){
 
                 RespR rs1 =  customerService.customeRec(customerRec);
-                log.info("[-CustomerInterLowerServiceImpl.customeInterRecRc1-] result is "
+                QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeInterRecRc1-] result is "
                         + rs1.toString() + ", request is " + data + " ,costtime="
                         + (System.currentTimeMillis() - costtimestart));
 
@@ -179,7 +175,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-CustomerInterLowerServiceImpl.customeInterRec-] get httpclient exception is "
+            QUERY_LOG.error("[-CustomerInterLowerServiceImpl.customeInterRec-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -205,7 +201,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
         result.setMsg("无法认证");
 
         try {
-        log.info("[-CustomerInterLowerServiceImpl.customeInterRecQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeInterRecQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
         JSONObject jsonObject = JSONObject.parseObject(data);
         String companyName =  jsonObject.getString("companyName");//企业名称
         String taxpayerCode = jsonObject.getString("taxplayerCode");//企业税号
@@ -224,7 +220,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
         customerRec.setCompanyReferencenum(taxpayerCode);
         RespR rs = customerService.customerRecQuery(customerRec);
         long costtimeend = System.currentTimeMillis();
-        log.info("[-CustomerInterLowerServiceImpl.customeInterRecQuery-] result is "
+        QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeInterRecQuery-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
         if(null != rs && rs.getCode() == 0){
@@ -239,7 +235,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
             return result;
         }
         } catch (Exception e) {
-            log.error("[-CustomerInterLowerServiceImpl.customeInterRecQuery-] get httpclient exception is "
+            QUERY_LOG.error("[-CustomerInterLowerServiceImpl.customeInterRecQuery-] get httpclient exception is "
                             + e + ", request is " + data);
         }
         return result;
@@ -257,7 +253,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
         result.setMsg("无法认证");
 
         try {
-            log.info("[-CustomerInterLowerServiceImpl.customeProtocolUpLoad-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeProtocolUpLoad-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//公司编号
             String serviceStartTime = jsonObject.getString("serviceStartTime");//服务开始时间
@@ -315,7 +311,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
             customerRecs.add(customerRec);
             RespR rs = lowerService.customeRecUpload(customerRecs);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-CustomerInterLowerServiceImpl.customeProtocolUpLoad-] result is "
+            QUERY_LOG.info("[-CustomerInterLowerServiceImpl.customeProtocolUpLoad-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -330,7 +326,7 @@ public class CustomerInterLowerServiceImpl implements CustomerInterLowerService
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-CustomerInterLowerServiceImpl.customeProtocolUpLoad-] get httpclient exception is "
+            QUERY_LOG.error("[-CustomerInterLowerServiceImpl.customeProtocolUpLoad-] get httpclient exception is "
                     + e + ", request is " + data);
         }
 

+ 36 - 33
src/main/java/com/jkcredit/invoice/credit/custInterface/NoCarInterServiceImpl.java

@@ -18,9 +18,11 @@ import com.jkcredit.invoice.service.lowerService.NoCarService;
 import com.jkcredit.invoice.service.manager.ParamService;
 import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
 import com.jkcredit.invoice.util.DateUtil;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang3.StringUtils;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
@@ -30,10 +32,11 @@ import java.util.List;
 import static java.util.stream.Collectors.toList;
 
 
-@Slf4j
 @Service("noCarInterService")
 public class NoCarInterServiceImpl implements NoCarInterService {
-
+    
+    Logger QUERY_LOG = LoggerUtil.logger(LogFileName.QUERY_LOG);
+    
     @Autowired
     private NoCarService noCarService;
     @Autowired
@@ -78,7 +81,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.customerCarRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.customerCarRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyName =  jsonObject.getString("companyName");//企业名称 选输
             String plateNumber =  jsonObject.getString("plateNumber");//plateNumber 必输
@@ -116,7 +119,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
 
             RespR rs = noCarService.customerCarRec(customerCarRecList);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.customerCarRec-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.customerCarRec-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -131,7 +134,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.customerCarRec-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.customerCarRec-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -159,7 +162,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String waybillSource =  jsonObject.getString("waybillSource");//备案来源 选输
             String plateNumber =  jsonObject.getString("plateNumber");//plateNumber 必输
@@ -181,7 +184,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
 
             RespR rs = noCarService.customerCarRecQueryUpper(customerCarRec);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -201,7 +204,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.customeRecUpperQuery-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.customeRecUpperQuery-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -231,7 +234,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.noCarBillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarBillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String num =  jsonObject.getString("num");//运单编号 必选
             String plateNumber =  jsonObject.getString("plateNumber");//车牌号 必选
@@ -289,7 +292,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
 
             if(noCarWayBillDb!=null && (noCarWayBillDb.getBillwayStatus() == 1||noCarWayBillDb.getBillwayStatus() == 2 || noCarWayBillDb.getBillwayStatus() == 3 || noCarWayBillDb.getBillwayStatus() == 4)) {
-                log.info("chongfuyundanhao:"+noCarWayBillDb.getBillNum());
+                QUERY_LOG.info("chongfuyundanhao:"+noCarWayBillDb.getBillNum());
                 result.setMsg("运单号重复");
                 return result;
             }
@@ -320,7 +323,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             }
             RespR rs = noCarService.noCarWaybillStart(noCarWayBill,noCarWayBillDb);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.noCarBillStart-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarBillStart-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -338,7 +341,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.noCarBillStart-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.noCarBillStart-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -366,7 +369,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.noCarBillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarBillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String num =  jsonObject.getString("num");//运单号 必输
             String realDestAddr =  jsonObject.getString("realDestAddr");//运单实际目的地址 必输
@@ -382,7 +385,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
 
             NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(num);
             if (null == noCarWayBill1){
-                log.info("chongfuyundanhao1:"+num);
+                QUERY_LOG.info("chongfuyundanhao1:"+num);
                 result.setMsg("运单开始指令还未上传!");
                 return result;
             }
@@ -399,7 +402,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             noCarWayBill.setInterfaceEndTime(DateUtil.getCurrentDateStr());
             RespR rs = noCarService.noCarWaybillEnd(noCarWayBill,noCarWayBill1);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.noCarBillEnd-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarBillEnd-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -414,7 +417,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.noCarBillEnd-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.noCarBillEnd-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -443,7 +446,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data + " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data + " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String num =  jsonObject.getString("num");//运单编号 必选
             String plateNumber =  jsonObject.getString("plateNumber");//车牌号 必选
@@ -500,7 +503,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
 
             if(noCarWayBillDb!=null && (noCarWayBillDb.getBillwayStatus() == 1||noCarWayBillDb.getBillwayStatus() == 2 || noCarWayBillDb.getBillwayStatus() == 3 || noCarWayBillDb.getBillwayStatus() == 4)) {
-                log.info("chongfuyundanhao1:"+noCarWayBillDb.getBillNum());
+                QUERY_LOG.info("chongfuyundanhao1:"+noCarWayBillDb.getBillNum());
                 result.setMsg("运单号重复");
                 return result;
             }
@@ -530,7 +533,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             }
             RespR rs = noCarService.noCarHisWaybillStart(noCarWayBill,noCarWayBillDb);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -549,7 +552,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.noCarHisWaybillStart-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.noCarHisWaybillStart-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -587,7 +590,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String num =  jsonObject.getString("num");//运单号 必输
             String realDestAddr =  jsonObject.getString("realDestAddr");//运单实际目的地址 必输
@@ -619,7 +622,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             noCarWayBill.setInterfaceEndTime(DateUtil.getCurrentDateStr());
             RespR rs = noCarService.noCarHisWaybillEnd(noCarWayBill,noCarWayBill1);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -634,7 +637,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -663,7 +666,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String num =  jsonObject.getString("num");//运单号 必输
             if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
@@ -682,7 +685,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             noCarWayBill1.setCompanyName(noCarWayBill1.getCompanyName());
             RespR rs = noCarService.getInvoiceByWayBillNumReal(noCarWayBill1,true);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -697,7 +700,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.noCarVoiceQuery-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.noCarVoiceQuery-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -729,7 +732,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
 
 
 
@@ -753,7 +756,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             List<String> reduce1 = list1.stream().filter(item -> !list2.contains(item)).collect(toList());
 
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] result is "
                     + reduce1.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != reduce1 && reduce1.size() > 0){
@@ -768,7 +771,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -798,7 +801,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-NoCarInterServiceImpl.balanceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-NoCarInterServiceImpl.balanceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
 
 
             Customer customer = customerMapper.selectByCustomerName(appKey);
@@ -806,7 +809,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
 
 
             long costtimeend = System.currentTimeMillis();
-            log.info("[-NoCarInterServiceImpl.balanceQuery-] result is "
+            QUERY_LOG.info("[-NoCarInterServiceImpl.balanceQuery-] result is "
                     + customer.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != customer){
@@ -824,7 +827,7 @@ public class NoCarInterServiceImpl implements NoCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-NoCarInterServiceImpl.balanceQuery-] get httpclient exception is "
+            QUERY_LOG.error("[-NoCarInterServiceImpl.balanceQuery-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;

+ 31 - 32
src/main/java/com/jkcredit/invoice/credit/custInterface/SelfCarInterServiceImpl.java

@@ -9,12 +9,12 @@ import com.jkcredit.invoice.model.entity.customer.CustomerRec;
 import com.jkcredit.invoice.service.customer.CustomerRecService;
 import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
 import com.jkcredit.invoice.service.lowerService.vo.*;
-import com.jkcredit.invoice.service.selfCar.SelfCarService;
 import com.jkcredit.invoice.util.DateUtil;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import com.mysql.cj.xdevapi.JsonArray;
-import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang3.StringUtils;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
@@ -22,11 +22,10 @@ import java.util.ArrayList;
 import java.util.List;
 
 
-@Slf4j
 @Service("selfCarInterService")
 public class SelfCarInterServiceImpl implements SelfCarInterService {
 
-
+    Logger QUERY_LOG = LoggerUtil.logger(LogFileName.QUERY_LOG);
     @Autowired
     SelfCarServiceL selfCarService;
 
@@ -53,7 +52,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-        log.info("[-SelfCarInterServiceImpl.customerETCQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+        QUERY_LOG.info("[-SelfCarInterServiceImpl.customerETCQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
         JSONObject jsonObject = JSONObject.parseObject(data);
         String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
         String cardId = jsonObject.getString("cardId");//卡号  非必输
@@ -80,7 +79,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             etcQueryVo.setPlateColor(plateColor);//车牌颜色 非必输
         RespR rs = selfCarService.getEtcInfo(etcQueryVo);
         long costtimeend = System.currentTimeMillis();
-        log.info("[-SelfCarInterServiceImpl.customerETCQuery-] result is "
+        QUERY_LOG.info("[-SelfCarInterServiceImpl.customerETCQuery-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
         if(null != rs && rs.getCode() == 0){
@@ -95,7 +94,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             return result;
         }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.customerETCQuery-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.customerETCQuery-] get httpclient exception is "
                             + e + ", request is " + data);
         }
         return result;
@@ -125,7 +124,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             JSONArray vehicleList = jsonObject.getJSONArray("vehicleList");//车牌的json字符串 必输
@@ -172,7 +171,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             RespR rs = selfCarService.queryEtcInfo(etcQueryVo);
 
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -187,7 +186,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -217,7 +216,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.customerETCRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerETCRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String mobile =  jsonObject.getString("mobile");//企业预留手机号 必输
@@ -262,7 +261,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             etcQueryVo.setCards(cards);
             RespR rs = selfCarService.customerEtcRec(etcQueryVo);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.customerETCRec-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerETCRec-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -277,7 +276,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.customerETCRec-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.customerETCRec-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -306,7 +305,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.customerETCRecValid-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerETCRecValid-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String mobile =  jsonObject.getString("mobile");//企业预留手机号 必输
@@ -336,7 +335,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
 
             RespR rs = selfCarService.customerEtcRecValid(etcValidVo);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.customerETCRecValid-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerETCRecValid-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -351,7 +350,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.customerETCRecValid-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.customerETCRecValid-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -381,7 +380,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.getTradeList-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.getTradeList-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String cardId =  jsonObject.getString("cardId");//卡号 必输
@@ -441,7 +440,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             }
             RespR rs = selfCarService.getTradeList(tradeRequestVo);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.getTradeList-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.getTradeList-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -456,7 +455,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.getTradeList-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.getTradeList-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -485,7 +484,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.applInvoice-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.applInvoice-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String cardId =  jsonObject.getString("cardId");//卡号 必输
@@ -532,7 +531,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             invoiceApplVo.setTradeIds(tradeIds);
             RespR rs = selfCarService.applInvoice(invoiceApplVo);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.applInvoice-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.applInvoice-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -547,7 +546,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.applInvoice-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.applInvoice-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -576,7 +575,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String cardId =  jsonObject.getString("cardId");//卡号 必输
@@ -608,7 +607,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
 
             RespR rs = selfCarService.getSelfCarInvoicesByTime(selfCarDueQueryVo);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -623,7 +622,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -653,7 +652,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String makeMonth =  jsonObject.getString("makeMonth");//发票开具月份 必输
@@ -679,7 +678,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
 
             RespR rs = selfCarService.getInvoicePackge(invoicePackageVo);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -694,7 +693,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;
@@ -724,7 +723,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
         result.setMsg("无法认证");
 
         try {
-            log.info("[-SelfCarInterServiceImpl.customerCarUnRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerCarUnRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
             JSONObject jsonObject = JSONObject.parseObject(data);
             String companyNum =  jsonObject.getString("companyNum");//企业编号 必输
             String cardId =  jsonObject.getString("cardId");//Etc卡号 必输
@@ -753,7 +752,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
 
             RespR rs = selfCarService.customerCarUnRec(customerCarRecList);
             long costtimeend = System.currentTimeMillis();
-            log.info("[-SelfCarInterServiceImpl.customerCarUnRec-] result is "
+            QUERY_LOG.info("[-SelfCarInterServiceImpl.customerCarUnRec-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="
                     + (costtimeend - costtimestart));
             if(null != rs && rs.getCode() == 0){
@@ -768,7 +767,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
                 return result;
             }
         } catch (Exception e) {
-            log.error("[-SelfCarInterServiceImpl.customerCarUnRec-] get httpclient exception is "
+            QUERY_LOG.error("[-SelfCarInterServiceImpl.customerCarUnRec-] get httpclient exception is "
                     + e + ", request is " + data);
         }
         return result;

+ 8 - 3
src/main/java/com/jkcredit/invoice/service/customer/impl/CustomerOperServiceImpl.java

@@ -9,12 +9,17 @@ import com.jkcredit.invoice.model.entity.customer.CustomerOper;
 import com.jkcredit.invoice.model.entity.user.User;
 import com.jkcredit.invoice.service.customer.CustomerOperService;
 import com.jkcredit.invoice.util.DateUtil;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
-@Slf4j
 @Service("customerOperService")
 public class CustomerOperServiceImpl extends ServiceImpl<CustomerOperMapper,CustomerOper> implements CustomerOperService {
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+    
+    
     @Autowired
     CustomerOperMapper customerOperMapper;
     @Autowired
@@ -26,7 +31,7 @@ public class CustomerOperServiceImpl extends ServiceImpl<CustomerOperMapper,Cust
 
     @Override
     public String saveCustomerOper(String customerName, int operType) {
-        log.info("开始保存批次信息CustomerOperServiceImpl.saveCustomerOper:("+customerName+","+operType+")");
+        MIX_LOG.info("开始保存批次信息CustomerOperServiceImpl.saveCustomerOper:("+customerName+","+operType+")");
         //保存批次信息
         User user = userMapper.getUserByUserName(customerName);
         String batchNumber = "YD" + System.currentTimeMillis();

+ 25 - 24
src/main/java/com/jkcredit/invoice/service/customer/impl/CustomerServiceImpl.java

@@ -12,18 +12,19 @@ import com.jkcredit.invoice.model.entity.CustomerRecharge;
 import com.jkcredit.invoice.model.entity.customer.CustomerRec;
 import com.jkcredit.invoice.service.customer.CustomerService;
 import com.jkcredit.invoice.service.upService.CommInterFace;
-import com.jkcredit.invoice.util.DateUtil;
-import com.jkcredit.invoice.util.MathUtil;
-import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.*;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
 
-import java.util.List;
-@Slf4j
 @Service("customerService")
 public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> implements CustomerService{
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+    
+    
     @Autowired
     CustomerMapper customerMapper;
 
@@ -50,7 +51,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
 
     @Override
     public Boolean addCustomers(Customer customer) {
-        log.info("开始添加客户信息:CustomerServiceImpl.addCustomers{}",customer);
+        MIX_LOG.info("开始添加客户信息:CustomerServiceImpl.addCustomers{}",customer);
         customer.setFirstSign(DateUtil.getCurrentDateStr());
         if(customerMapper.selectByCustomerName(customer.getCustomerName())!=null){
             return false;
@@ -66,15 +67,15 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
     @Override
     @Transactional(rollbackFor = Exception.class)
     public Boolean customRecharge(CustomerRecharge customerRecharge) {
-        log.info("开始充值:CustomerServiceImpl.customRecharge{}",customerRecharge);
+        MIX_LOG.info("开始充值:CustomerServiceImpl.customRecharge{}",customerRecharge);
         if(null == customerRecharge.getRechargeMony() || "".equals(customerRecharge.getRechargeMony())){
-            log.error("充值失败:CustomerServiceImpl.getRechargeMony:" + customerRecharge.getRechargeMony());
+            MIX_LOG.error("充值失败:CustomerServiceImpl.getRechargeMony:" + customerRecharge.getRechargeMony());
             return false;
         }
         Customer customer = customerMapper.selectByCustomerName(customerRecharge.getCustomerName());
         Double currentMoney = MathUtil.add(customer.getAccountBalance(),customerRecharge.getRechargeMony());
         /*if(currentMoney.compareTo(0.0) < 0){
-            log.error("充值失败:CustomerServiceImpl.customRecharge:" + currentMoney);
+            MIX_LOG.error("充值失败:CustomerServiceImpl.customRecharge:" + currentMoney);
             return false;
         }*/
         customer.setAccountBalance(currentMoney);
@@ -83,11 +84,11 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         customerRecharge.setBeforeMony(customer.getAccountBalance());
         customerRecharge.setCompanyName(customer.getCompany());
         customerRechargeMapper.insert(customerRecharge);
-        log.info("充值结束:CustomerServiceImpl.customRecharge{}",customerRecharge);
+        MIX_LOG.info("充值结束:CustomerServiceImpl.customRecharge{}",customerRecharge);
         return true;
     }
     public RespR contractAdd(CustomerRec customerRec){
-        log.info("开始上传协议:CustomerServiceImpl.contractAdd{}",customerRec);
+        MIX_LOG.info("开始上传协议:CustomerServiceImpl.contractAdd{}",customerRec);
         customerRecMapper.updateByPrimaryKeySelective(customerRec);
         if(customerRec.getRecStatus().intValue() == 2){
             return new RespR(false,"无法上传协议,未注册");
@@ -104,10 +105,10 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         b2bContractAddRequest.setBase64Str(customerRec.getBase64Str());
         RespR<B2bContractAddResponse> responseRespR = commInterFace.b2bContractAdd(b2bContractAddRequest);
         if(responseRespR.getCode() == 1){
-            log.info("协议上传失败:CustomerServiceImpl.contractAdd{}---msg{}",customerRec,responseRespR.getMsg());
+            MIX_LOG.info("协议上传失败:CustomerServiceImpl.contractAdd{}---msg{}",customerRec,responseRespR.getMsg());
             return new RespR(false,responseRespR.getMsg());
         }else{
-            log.info("协议上传成功:CustomerServiceImpl.contractAdd");
+            MIX_LOG.info("协议上传成功:CustomerServiceImpl.contractAdd");
             customerRec.setContractSuc(1);
             customerRec.setContrantNum(responseRespR.getData().getContrantNum());
             customerRecMapper.updateByPrimaryKeySelective(customerRec);
@@ -123,7 +124,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
     }
 
     public RespR customeRec(CustomerRec customerRec){
-        log.info("开始客户注册:CustomerServiceImpl.customeRec{}",customerRec);
+        MIX_LOG.info("开始客户注册:CustomerServiceImpl.customeRec{}",customerRec);
         CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);
         if(null != customerRec1){
             return new RespR(false,"客户已经备案成功,无需备案");
@@ -132,7 +133,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         //主动查询上游接口,如果已经备案则更新
     /*    RespR respR1 = customerService.customerRecQuery(customerRec);
         if(respR1.getCode() == 0){
-            log.info("客户注册查上游成功:CustomerServiceImpl.customeRec{}",customerRec);
+            MIX_LOG.info("客户注册查上游成功:CustomerServiceImpl.customeRec{}",customerRec);
             List<B2bCompanyModel> b2bCompanyModels = (List<B2bCompanyModel>)respR1.getData();
             if(b2bCompanyModels.size()==1){
                 customerRec.setCompanyNum(b2bCompanyModels.get(0).getCompanyNum());
@@ -142,17 +143,17 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
             }
         }*/
         CompanyAddRequest companyAddRequest = buildCompany(customerRec);
-        log.info("开始客户上游注册:CustomerServiceImpl.customeRec{}",customerRec);
+        MIX_LOG.info("开始客户上游注册:CustomerServiceImpl.customeRec{}",customerRec);
         //注册企业
         RespR<CompanyAddResponse> respR = commInterFace.addCompany(companyAddRequest);
         if(respR.getCode() == 1){
-            log.info("客户上游注册失败:CustomerServiceImpl.customeRec{},msg{}",customerRec,respR.getMsg());
+            MIX_LOG.info("客户上游注册失败:CustomerServiceImpl.customeRec{},msg{}",customerRec,respR.getMsg());
             customerRec.setRecStatus(2);
             customerRec.setFileMessage(respR.getMsg());
             customerRecMapper.updateByPrimaryKeySelective(customerRec);
             return new RespR(false,respR.getMsg());
         }
-        log.info("客户上游注册成功:CustomerServiceImpl.customeRec{}");
+        MIX_LOG.info("客户上游注册成功:CustomerServiceImpl.customeRec{}");
         CompanyAddResponse response = respR.getData();
         //注册协议
         String companyNum = response.getCompanyNum();
@@ -186,7 +187,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
 
     @Override
     public RespR customerRecQuery(CustomerRec customerRec) {
-        log.info("查询注册信息:CustomerServiceImpl.customerRecQuery{}",customerRec);
+        MIX_LOG.info("查询注册信息:CustomerServiceImpl.customerRecQuery{}",customerRec);
         CompanyQueryRequest companyQueryRequest = new CompanyQueryRequest();
         companyQueryRequest.setCompanyName(customerRec.getCompanyName());
         companyQueryRequest.setTaxpaterCode(customerRec.getCompanyReferencenum());
@@ -200,15 +201,15 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
 
     @Override
     public RespR updateCustomerRecStatus(CustomerRec customerRec) {
-        log.info("更新注册信息:CustomerServiceImpl.customerRecQuery{}",customerRec);
+        MIX_LOG.info("更新注册信息:CustomerServiceImpl.customerRecQuery{}",customerRec);
         CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompany(customerRec);
         customerRec1.setRecStatus(customerRec.getRecStatus());
         int i = customerRecMapper.updateByPrimaryKey(customerRec1);
         if(i<=0){
-            log.info("更新注册信息失败:CustomerServiceImpl.customerRecQuery{}",customerRec);
+            MIX_LOG.info("更新注册信息失败:CustomerServiceImpl.customerRecQuery{}",customerRec);
             return new RespR(false);
         }
-        log.info("更新注册信息成功:CustomerServiceImpl.customerRecQuery{}",customerRec);
+        MIX_LOG.info("更新注册信息成功:CustomerServiceImpl.customerRecQuery{}",customerRec);
         return new RespR(true);
     }
 
@@ -220,7 +221,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
     @Override
     public boolean checkMoneyEnough(String customerName) {
         Customer customer = customerMapper.selectByCustomerName(customerName);
-        log.info("客户余额查询:CustomerServiceImpl.checkMoneyEnough{}",customer);
+        MIX_LOG.info("客户余额查询:CustomerServiceImpl.checkMoneyEnough{}",customer);
         if(customer== null || customer.getAccountBalance()<=0){
             return false;
         }

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 13 - 18
src/main/java/com/jkcredit/invoice/service/lowerService/impl/CustomerLowerServiceImpl.java


+ 43 - 42
src/main/java/com/jkcredit/invoice/service/lowerService/impl/NoCarServiceImpl.java

@@ -26,10 +26,8 @@ import com.jkcredit.invoice.service.lowerService.vo.MonthAccountQueryVo;
 import com.jkcredit.invoice.service.manager.ParamService;
 import com.jkcredit.invoice.service.nocar.NoCarRecService;
 import com.jkcredit.invoice.service.upService.NoCarInterface;
-import com.jkcredit.invoice.util.DateUtil;
-import com.jkcredit.invoice.util.MathUtil;
-import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.*;
+import org.slf4j.Logger;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Repository;
@@ -39,9 +37,12 @@ import org.springframework.util.StringUtils;
 import java.util.*;
 import java.util.stream.Collectors;
 
-@Slf4j
 @Repository("noCarService")
 public class NoCarServiceImpl implements NoCarService{
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+    
+    
     @Autowired
     NoCarInterface noCarInterface;
 
@@ -71,7 +72,7 @@ public class NoCarServiceImpl implements NoCarService{
 
     @Override
     public RespR customerCarRec(List<CustomerCarRec> customerCarRecs) {
-        log.info("车辆备案开始NoCarServiceImpl.customerCarRec{}",customerCarRecs);
+        MIX_LOG.info("车辆备案开始NoCarServiceImpl.customerCarRec{}",customerCarRecs);
         if(customerCarRecs== null || customerCarRecs.size()<=0){
             return new RespR(false,"无备案车辆");
         }
@@ -80,7 +81,7 @@ public class NoCarServiceImpl implements NoCarService{
         Customer customer = customerMapper.selectByCustomerName(customerCarRec2.getCustomerName());
         if(customer == null || customer.getAccstatus()!=0){
             res.append("#客户:"+customerCarRec2.getCustomerName()+"不存在或状态异常");
-            log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
+            MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
             return new RespR(false,res.toString());
         }
         CustomerRec customerRecP = new CustomerRec();
@@ -89,7 +90,7 @@ public class NoCarServiceImpl implements NoCarService{
         CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecP);
         if(customerRec == null || customerRec.getRecStatus()!=1){
             res.append("#客户:"+customerCarRec2.getCustomerName()+"企业:"+customerCarRec2.getCompanyName()+"备案信息不存在");
-            log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
+            MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
             return new RespR(false,res.toString());
         }
         return customerCarRecForNoCar(customerCarRecs,res,customerRec);
@@ -146,10 +147,10 @@ public class NoCarServiceImpl implements NoCarService{
 
             }
             if(StringUtils.isEmpty(res.toString())){
-                log.info("车辆备案成功");
+                MIX_LOG.info("车辆备案成功");
                 return new RespR("车辆备案成功");
             }else {
-                log.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
+                MIX_LOG.info("车辆备案异常NoCarServiceImpl.customerCarRec{},msg{}",customerCarRecs,res.toString());
                 return new RespR(false,res.toString());
             }
 
@@ -163,7 +164,7 @@ public class NoCarServiceImpl implements NoCarService{
     @Override
     public RespR customerCarRecQueryUpper(CustomerCarRec customerCarRec) {
         StringBuffer res = new StringBuffer();
-        log.info("车辆备案查询NoCarServiceImpl.customerCarRecQueryUpper{}",customerCarRec);
+        MIX_LOG.info("车辆备案查询NoCarServiceImpl.customerCarRecQueryUpper{}",customerCarRec);
         Customer customer = customerMapper.selectByCustomerName(customerCarRec.getCustomerName());
         if(customer == null || customer.getAccstatus()!=0){
             res.append("#客户:"+customer.getCustomerName()+"不存在或状态异常");
@@ -187,7 +188,7 @@ public class NoCarServiceImpl implements NoCarService{
 
         RespR<VehicleQueryResponse> respR = noCarInterface.vehicleQuery(vehicleQueryRequest);
         if(respR.getCode() == 1){
-            log.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
+            MIX_LOG.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
         }else{
             customerCarRec.setRecStatus(1);
             updateCustomerCarRec(customerCarRec);
@@ -214,24 +215,24 @@ public class NoCarServiceImpl implements NoCarService{
 
     @Override
     public RespR noCarWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBillDb) {
-        log.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
+        MIX_LOG.info("运单上传开始:NoCarServiceImpl.noCarWaybillStart{}",noCarWayBill);
         //如果运单时间和当前时间差了三天,直接返回
         if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),new Date())<-72){
             return new RespR(false,"失败,运单开始时间超72小时");
         }
         if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
+            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
             return new RespR(false,"失败,承运时长超96小时");
         }
         RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
         if(respR.getCode() == 1){
-            log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
+            MIX_LOG.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
             return  respR;
         }
         WaybillStartRequest waybillStartRequest = buildWaybillStartRequest(noCarWayBill);
         RespR<WaybillStartResponse> responseRespR = noCarInterface.waybillStart(waybillStartRequest);
         if(responseRespR.getCode() == 1){
-            log.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
+            MIX_LOG.info("运单上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
             return new RespR(false,responseRespR.getMsg());
         }else{
             noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
@@ -297,9 +298,9 @@ public class NoCarServiceImpl implements NoCarService{
     }
     @Override
     public RespR noCarWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
-        log.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
+        MIX_LOG.info("运单结束开始:NoCarServiceImpl.noCarWaybillEnd{}",noCarWayBill);
         if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill1.getHisFlag() ==1 ){
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
+            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
             noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
             noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
             return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
@@ -312,7 +313,7 @@ public class NoCarServiceImpl implements NoCarService{
             //noCarWayBill1.setBillwayStatus(4);
             noCarWayBill1.setFailReason("失败,承运时长超96小时");
             noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
+            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
             return new RespR(false,"失败,承运时长超96小时");
         }
 
@@ -324,13 +325,13 @@ public class NoCarServiceImpl implements NoCarService{
         waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
         RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
         if(waybillEndResponseRespR.getCode() == 1){
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
+            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,waybillEndResponseRespR.getMsg());
             noCarWayBill1.setBillwayStatus(-3);
             noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
             return new RespR(false,waybillEndResponseRespR.getMsg());
         }else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
+            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时");
             noCarWayBill1.setBillwayStatus(4);
             noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
@@ -345,29 +346,29 @@ public class NoCarServiceImpl implements NoCarService{
 
     @Override
     public RespR noCarHisWaybillStart(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
-        log.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
+        MIX_LOG.info("历史运单开始上传:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"开始");
         if(noCarWayBill1!=null && noCarWayBill1.getBillwayStatus() ==1){
             return new RespR(false,"运单号重复");
         }
         if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
-            log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
+            MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
             return new RespR(false,"失败,运单未满20天时效");
         }
         if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
-            log.info("历史运单开始上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
+            MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
             return new RespR(false,"失败,承运时长超96小时");
         }
 
         RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
         if(respR.getCode() == 1){
-            log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
+            MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,respR.getMsg());
             return  respR;
         }
         WaybillHistoryStartRequest waybillHistoryStartRequest = BuildNoCarHisWaybill(noCarWayBill);
         RespR<WaybillHistoryStartResponse> responseRespR = noCarInterface.waybillHistoryStart(waybillHistoryStartRequest);
 
         if(responseRespR.getCode() == 1){
-            log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
+            MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,responseRespR.getMsg());
             return new RespR(false,responseRespR.getMsg());
         }else{
             noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
@@ -402,9 +403,9 @@ public class NoCarServiceImpl implements NoCarService{
     }
     @Override
     public RespR noCarHisWaybillEnd(NoCarWayBill noCarWayBill,NoCarWayBill noCarWayBill1) {
-        log.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
+        MIX_LOG.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
         if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==0 || noCarWayBill1.getBillwayStatus() == -3 ){
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
+            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
             noCarWayBill.setFailReason("当前运单状态无法结束,请检查当前指令状态");
             noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
             return new RespR(false,"当前运单状态无法结束,请检查当前指令状态");
@@ -413,7 +414,7 @@ public class NoCarServiceImpl implements NoCarService{
         noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
         noCarWayBill1.setInterType(noCarWayBill.getInterType());
         if((DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96) && (noCarWayBill.getInterType() != 0)){
-            log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
+            MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
             noCarWayBill.setFailReason("失败,承运时长超96小时");
             noCarWaybillMapper.updateByBillNumTimeRes(noCarWayBill);
             return new RespR(false,"失败,承运时长超96小时");
@@ -429,13 +430,13 @@ public class NoCarServiceImpl implements NoCarService{
             noCarWayBill1.setBillwayStatus(-3);
             noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
-            log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
+            MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
 
             return new RespR(false,waybillEndResponseRespR.getMsg());
         }else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
             noCarWayBill.setBillwayStatus(4);
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
-            log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
+            MIX_LOG.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,"运单已经超时,请拆分");
             return new RespR(false,"运单已经超时");
         }
         noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
@@ -467,7 +468,7 @@ public class NoCarServiceImpl implements NoCarService{
     @Override
     @Transactional
     public RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill, boolean isInterface) {
-        log.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
+        MIX_LOG.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
        if(noCarWayBill.getBillwayStatus() == 3){
 
             if(isInterface){
@@ -489,12 +490,12 @@ public class NoCarServiceImpl implements NoCarService{
         }
         int status = noCarWayBill.getBillwayStatus();
         if(status !=2){
-            log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,"运单转态,无法开票");
+            MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,"运单转态,无法开票");
             return new RespR(false,"运单状态无法开票");
         }
         RespR respR = checkCarWayBillAndSetInfo(noCarWayBill);
         if(respR.getCode() == 1){
-            log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,respR.getMsg());
+            MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,respR.getMsg());
             return  respR;
         }
 
@@ -505,7 +506,7 @@ public class NoCarServiceImpl implements NoCarService{
         waybillNumFindInvoiceRequest.setWaybillNum(noCarWayBill.getBillNum());
         RespR<WaybillNumFindInvoiceResponse> responseRespR = noCarInterface.waybillNumFindInvoice(waybillNumFindInvoiceRequest);
         if(responseRespR.getCode() == 1){
-            log.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,responseRespR.getMsg());
+            MIX_LOG.info("取票失败啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{},msg{}",noCarWayBill,isInterface,responseRespR.getMsg());
             return new RespR(false,responseRespR.getMsg());
         }else{
             int tempStatus = responseRespR.getData().getWaybillStatus().intValue();
@@ -558,7 +559,7 @@ public class NoCarServiceImpl implements NoCarService{
                         calculateInforMapper.insert(calculateInfor);
                         customer.setAccountBalance(MathUtil.sub(customer.getAccountBalance(),calculateInfor.getFee()));
                     }catch (Exception e){
-                        log.error("重复数据来啦"+calculateInfor.getTradeId());
+                        MIX_LOG.error("重复数据来啦"+calculateInfor.getTradeId());
                     }
 
 
@@ -586,7 +587,7 @@ public class NoCarServiceImpl implements NoCarService{
 
     @Override
     public RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo) {
-        log.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
+        MIX_LOG.info("取红冲票啦:NoCarServiceImpl.hCInvoiceQuery{}",hcInvoiceQueryVo);
         WaybillInvoiceRedQueryRequest redQueryRequest = new WaybillInvoiceRedQueryRequest();
         String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
         redQueryRequest.setCompanyNum(companyNum);
@@ -594,7 +595,7 @@ public class NoCarServiceImpl implements NoCarService{
 
         RespR<WaybillInvoiceRedQueryResponse> respR = noCarInterface.waybillInvoiceRedQuery(redQueryRequest);
         if(respR.getCode() == 1){
-            log.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
+            MIX_LOG.info("取红冲票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",hcInvoiceQueryVo,respR.getMsg());
             return new RespR(false,respR.getMsg());
         }
         if(StringUtils.isEmpty(hcInvoiceQueryVo.getCompanyName())){
@@ -606,10 +607,10 @@ public class NoCarServiceImpl implements NoCarService{
     }
     @Override
     public RespR monthAccQuery(MonthAccountQueryVo monthAccountQueryVo) {
-        log.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
+        MIX_LOG.info("取月票啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"开始");
         Customer customer = customerMapper.selectByCustomerName(monthAccountQueryVo.getCustomeName());
         if(customer==null || customer.getAccstatus() ==1){
-            log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户不存在或者已经停用");
+            MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户不存在或者已经停用");
             return new RespR(false,"客户不存在或者已经停用");
         }
         CustomerRec customerRecParm = new CustomerRec();
@@ -617,7 +618,7 @@ public class NoCarServiceImpl implements NoCarService{
         customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
         CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
         if(customerRec == null || customerRec.getRecStatus()!=1){
-            log.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案企业或运单编号与查询主体不符");
+            MIX_LOG.info("取月票失败啦:NoCarServiceImpl.hCInvoiceQuery{},msg{}",monthAccountQueryVo,"客户未备案企业或运单编号与查询主体不符");
             return new RespR(false,"客户未备案企业或运单编号与查询主体不符");
         }
         WaybillCountQueryRequest waybillCountQueryRequest = new WaybillCountQueryRequest();
@@ -628,7 +629,7 @@ public class NoCarServiceImpl implements NoCarService{
         waybillCountQueryRequest.setWaybillSource(monthAccountQueryVo.getWaybillSource());
         waybillCountQueryRequest.setPageNo(monthAccountQueryVo.getPageNo());
         RespR<WaybillCountQueryResponse> waybillCountQueryResponseRespR =  noCarInterface.waybillCountQuery(waybillCountQueryRequest);
-        log.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
+        MIX_LOG.info("取月票结束:NoCarServiceImpl.hCInvoiceQuery{},msg{}",waybillCountQueryResponseRespR,waybillCountQueryResponseRespR.getMsg());
         return waybillCountQueryResponseRespR;
     }
 }

+ 44 - 42
src/main/java/com/jkcredit/invoice/service/lowerService/impl/SelfCarServiceLImpl.java

@@ -23,19 +23,21 @@ import com.jkcredit.invoice.service.customer.CustomerService;
 import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
 import com.jkcredit.invoice.service.lowerService.vo.*;
 import com.jkcredit.invoice.service.upService.SelfCarInterface;
-import com.jkcredit.invoice.util.DateUtil;
-import com.jkcredit.invoice.util.MathUtil;
-import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.*;
 import org.apache.commons.lang3.StringUtils;
+import org.slf4j.Logger;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import java.util.ArrayList;
 import java.util.List;
-@Slf4j
 @Service
 public class SelfCarServiceLImpl implements SelfCarServiceL {
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+    
+    
     @Autowired
     SelfCarInterface selfCarInterface;
     @Autowired
@@ -56,18 +58,18 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
     CustomerService customerService;
     @Override
     public RespR<List<CardTradeModel>> getTradeList(TradeRequestVo tradeRequestVo) {
-        log.info("获取交易开始SelfCarServiceLImpl.getTradeList{}",tradeRequestVo);
+        MIX_LOG.info("获取交易开始SelfCarServiceLImpl.getTradeList{}",tradeRequestVo);
         Customer customer = customerMapper.selectByCustomerName(tradeRequestVo.getCustomerName());
         if(customer == null || customer.getAccstatus().intValue() == 1){
-            log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"客户已经停用");
+            MIX_LOG.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"客户已经停用");
             return new RespR(false,"客户已经停用");
         }
         if(StringUtils.isEmpty(tradeRequestVo.getStartTime()) || StringUtils.isEmpty(tradeRequestVo.getEndTime())){
-            log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"时间为空");
+            MIX_LOG.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"时间为空");
             return new RespR(false,"时间为空");
         }
         if(DateUtil.getDistanceDays(tradeRequestVo.getEndTime(),tradeRequestVo.getStartTime())>90){
-            log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"不能查询大于90天的交易");
+            MIX_LOG.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"不能查询大于90天的交易");
             return new RespR(false,"不能查询大于90天的交易");
         }
         CustomerRec customerRec = new CustomerRec();
@@ -75,12 +77,12 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         customerRec.setCompanyName(tradeRequestVo.getCompanyName());
         customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRec);
         if(customerRec == null || customerRec.getRecStatus().intValue() !=1 ){
-            log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"客户未备案");
+            MIX_LOG.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"客户未备案");
             return new RespR(false,"客户未备案");
         }
         CustomerCarRec customerCarRec = customerCarRecMapper.selectByETC(tradeRequestVo.getEtcId());
         if(customerCarRec == null || customerCarRec.getRecStatus() != 1){
-            log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"该etc卡未绑定或绑定类型错误");
+            MIX_LOG.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"该etc卡未绑定或绑定类型错误");
             return new RespR(false,"该etc卡未绑定或绑定类型错误");
         }
         CardTradeRequest cardTradeRequest = new CardTradeRequest();
@@ -91,7 +93,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         cardTradeRequest.setTradeStatus(tradeRequestVo.getTradeStatus());
         RespR<CardTradeResponse> resp = selfCarInterface.cardTrade(cardTradeRequest);
         if(resp.getCode() == 1){
-            log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,resp.getMsg());
+            MIX_LOG.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,resp.getMsg());
             return new RespR(false,resp.getMsg());
         }else{
             CardTradeResponse cardTradeResponse = resp.getData();
@@ -134,14 +136,14 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
 
     @Override
     public RespR<String> applInvoice(InvoiceApplVo invoiceApplVo) {
-        log.info("申请开票开始SelfCarServiceLImpl.applInvoice{}",invoiceApplVo);
+        MIX_LOG.info("申请开票开始SelfCarServiceLImpl.applInvoice{}",invoiceApplVo);
         if(!customerService.checkMoneyEnough(invoiceApplVo.getCustomerName())){
-            log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"余额不足");
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"余额不足");
             return new RespR(false,"余额不足");
         }
         Customer customer = customerMapper.selectByCustomerNameForLock(invoiceApplVo.getCustomerName());
         if(customer == null || customer.getAccstatus().intValue() == 1){
-            log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"客户已经停用");
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"客户已经停用");
             return new RespR(false,"客户已经停用");
         }
         CustomerRec customerRec = new CustomerRec();
@@ -149,12 +151,12 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         customerRec.setCompanyName(invoiceApplVo.getCompanyName());
         customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRec);
         if(customerRec == null || customerRec.getRecStatus().intValue() !=1 ){
-            log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"客户未备案");
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"客户未备案");
             return new RespR(false,"客户未备案");
         }
         CustomerCarRec customerCarRec = customerCarRecMapper.selectByETC(invoiceApplVo.getCardId());
         if(customerCarRec == null || customerCarRec.getRecStatus() != 1){
-            log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"该etc卡未绑定或绑定类型错误");
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"该etc卡未绑定或绑定类型错误");
             return new RespR(false,"该etc卡未绑定或绑定类型错误");
         }
         B2BInvoiceApplyRequest b2BInvoiceApplyRequest = new B2BInvoiceApplyRequest();
@@ -173,7 +175,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         b2BInvoiceApplyRequest.setTradeIdModel(b2BInvoiceApplyModels);
         RespR<B2BInvoiceApplyResponse> respR = selfCarInterface.b2BInvoiceApply(b2BInvoiceApplyRequest);
         if(respR.getCode()==1){
-            log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,respR.getMsg());
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,respR.getMsg());
             return new RespR(false,respR.getMsg());
         }else{
             B2BInvoiceApplyResponse b2BInvoiceApplyResponse = respR.getData();
@@ -222,7 +224,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
 
     @Override
     public RespR<List<SelfCarInvoice>> getSelfCarInvoicesByApplyIds(ApplQueryInvVo applQueryInvVo) {
-        log.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{}",applQueryInvVo);
+        MIX_LOG.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{}",applQueryInvVo);
         if(!customerService.checkMoneyEnough(applQueryInvVo.getCustomerName())){
             return new RespR(false,"余额不足");
         }
@@ -243,7 +245,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         b2BInvoiceQueryRequest.setApplyId(applQueryInvVo.getApplId());
         RespR<B2BInvoiceQueryByApplyResponse> responseRespR = selfCarInterface.b2bContractQuery(b2BInvoiceQueryRequest);
         if(responseRespR.getCode() == 1){
-            log.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{},msg{}",applQueryInvVo,responseRespR.getMsg());
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{},msg{}",applQueryInvVo,responseRespR.getMsg());
             return new RespR(false,responseRespR.getMsg());
         }else{
             B2BInvoiceQueryByApplyResponse response = responseRespR.getData();
@@ -270,9 +272,9 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
     }
     @Override
     public void getSelfCarInvoicesByApplyIds(SelfCarAppl applQueryInvVo) {
-        log.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{}",applQueryInvVo);
+        MIX_LOG.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{}",applQueryInvVo);
         if(!customerService.checkMoneyEnough(applQueryInvVo.getCustomId())){
-            log.info("余额不足{}",applQueryInvVo);
+            MIX_LOG.info("余额不足{}",applQueryInvVo);
             return ;
         }
         CustomerRec customerRecParam = new CustomerRec();
@@ -280,7 +282,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         customerRecParam.setCompanyName(applQueryInvVo.getCompanyNum());
         CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRecParam);
         if(customerRec == null || customerRec.getRecStatus() != 1){
-            log.info("备案信息不存在{}",applQueryInvVo);
+            MIX_LOG.info("备案信息不存在{}",applQueryInvVo);
             return;
         }
         B2BInvoiceQueryByApplyRequest b2BInvoiceQueryRequest = new B2BInvoiceQueryByApplyRequest();
@@ -290,7 +292,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         b2BInvoiceQueryRequest.setApplyId(applQueryInvVo.getApplId());
         RespR<B2BInvoiceQueryByApplyResponse> responseRespR = selfCarInterface.b2bContractQuery(b2BInvoiceQueryRequest);
         if(responseRespR.getCode() == 1){
-            log.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{},msg{}",applQueryInvVo,responseRespR.getMsg());
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{},msg{}",applQueryInvVo,responseRespR.getMsg());
         }else{
             B2BInvoiceQueryByApplyResponse response = responseRespR.getData();
             List<B2BInvoiceQueryByApplyModel> b2BInvoiceQueryByApplyModels = response.getResult();
@@ -314,7 +316,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
     }
     @Override
     public RespR<List<B2BInvoiceListModel>> getSelfCarInvoicesByTime(SelfCarDueQueryVo selfCarDueQueryVo) {
-        log.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByTime{}",selfCarDueQueryVo);
+        MIX_LOG.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByTime{}",selfCarDueQueryVo);
         if(!customerService.checkMoneyEnough(selfCarDueQueryVo.getCustomername())){
             return new RespR(false,"余额不足");
         }
@@ -341,7 +343,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
 
         RespR<B2BInvoiceQueryResponse> responseRespR = selfCarInterface.b2BInvoiceQuery(b2BInvoiceQueryRequest);
         if(responseRespR.getCode() == 1){
-            log.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByTime{},msg{}",selfCarDueQueryVo,responseRespR.getMsg());
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByTime{},msg{}",selfCarDueQueryVo,responseRespR.getMsg());
             return new RespR(false,responseRespR.getMsg());
         }else{
             B2BInvoiceQueryResponse b2BInvoiceQueryResponse = responseRespR.getData();
@@ -370,7 +372,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
 
     @Override
     public RespR<List<B2bInvoicePackageModel>> getInvoicePackge(InvoicePackageVo invoicePackageVo) {
-        log.info("申请开票开始SelfCarServiceLImpl.getInvoicePackge{}",invoicePackageVo);
+        MIX_LOG.info("申请开票开始SelfCarServiceLImpl.getInvoicePackge{}",invoicePackageVo);
         Customer customer = customerMapper.selectByCustomerName(invoicePackageVo.getCustomerName());
         if(customer == null || customer.getAccstatus().intValue() == 1){
             return new RespR(false,"客户已经停用");
@@ -391,7 +393,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         b2bInvoicePackageRequest.setMakeMonth(invoicePackageVo.getMonth());
         RespR<B2bInvoicePackageResponse> b2bInvoicePackageResponseRespR = selfCarInterface.b2bInvoicePackage(b2bInvoicePackageRequest);
         if(b2bInvoicePackageResponseRespR.getCode() == 1){
-            log.info("申请开票失败SelfCarServiceLImpl.getInvoicePackge{},msg{}",invoicePackageVo,b2bInvoicePackageResponseRespR.getMsg());
+            MIX_LOG.info("申请开票失败SelfCarServiceLImpl.getInvoicePackge{},msg{}",invoicePackageVo,b2bInvoicePackageResponseRespR.getMsg());
             return new RespR(false,b2bInvoicePackageResponseRespR.getMsg());
         }else{
             return new RespR(b2bInvoicePackageResponseRespR.getData().getResult());
@@ -400,7 +402,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
 
     @Override
     public RespR getEtcInfo(EtcQueryVo etcQueryVo) {
-        log.info("获取etc信息:SelfCarServiceLImpl.getEtcInfo{}",etcQueryVo);
+        MIX_LOG.info("获取etc信息:SelfCarServiceLImpl.getEtcInfo{}",etcQueryVo);
         Customer customer = customerMapper.selectByCustomerName(etcQueryVo.getCustomerName());
         if(customer == null || customer.getAccstatus().intValue() == 1){
             return new RespR(false,"客户已经停用");
@@ -419,13 +421,13 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         cardQueryCardToBRequest.setPalteColor(etcQueryVo.getPlateColor());//车牌颜色.非必输
         RespR<CardBindQueryListToBResponse> respR = selfCarInterface.cardBindQueryListToB(cardQueryCardToBRequest);
         if(respR.getCode() == 1){
-            log.info("获取etc信息失败:SelfCarServiceLImpl.getEtcInfo{},msg{}",etcQueryVo,respR.getMsg());
+            MIX_LOG.info("获取etc信息失败:SelfCarServiceLImpl.getEtcInfo{},msg{}",etcQueryVo,respR.getMsg());
             return new RespR(false,respR.getMsg());
         }
         return new RespR(respR.getData().getResult());
     }
     public RespR queryEtcInfo(EtcBindVo etcBindVo){
-        log.info("获取etc信息:SelfCarServiceLImpl.queryEtcInfo{}",etcBindVo);
+        MIX_LOG.info("获取etc信息:SelfCarServiceLImpl.queryEtcInfo{}",etcBindVo);
         StringBuffer res = new StringBuffer();
         if(etcBindVo== null || etcBindVo.getCards() ==null || etcBindVo.getCards().size()<=0){
             return new RespR(false,"无备案Etc");
@@ -455,11 +457,11 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         cardQueryCardToBRequest.setVehicleList(cardQueryCardToBModels);
         RespR<CardQueryCardToBResponse> respR = selfCarInterface.cardQueryCardToB(cardQueryCardToBRequest);
         if(respR.getCode() == 1){
-            log.info("获取etc信息失败:SelfCarServiceLImpl.queryEtcInfo{},msg{}",etcBindVo,respR.getMsg());
+            MIX_LOG.info("获取etc信息失败:SelfCarServiceLImpl.queryEtcInfo{},msg{}",etcBindVo,respR.getMsg());
             return new RespR(false,respR.getMsg());
         }
         if(respR.getData().getResult() == null){
-            log.info("获取etc信息失败:SelfCarServiceLImpl.queryEtcInfo{},msg{}",etcBindVo,"没有etc卡");
+            MIX_LOG.info("获取etc信息失败:SelfCarServiceLImpl.queryEtcInfo{},msg{}",etcBindVo,"没有etc卡");
             return new RespR(false,"没有etc卡");
         }
         return new RespR(respR.getData().getResult());
@@ -467,7 +469,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
     }
     @Override
     public RespR customerEtcRec(EtcBindVo etcBindVo) {
-        log.info("etc注册:SelfCarServiceLImpl.customerEtcRec{}",etcBindVo);
+        MIX_LOG.info("etc注册:SelfCarServiceLImpl.customerEtcRec{}",etcBindVo);
         if(etcBindVo== null || etcBindVo.getCards() ==null || etcBindVo.getCards().size()<=0){
             return new RespR(false,"无备案Etc");
         }
@@ -502,7 +504,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         cardBindingToBRequest.setCardIdList(cardBindingToBModels);
         RespR<CardBindingToBResponse> respR1 = selfCarInterface.cardBindingToB(cardBindingToBRequest);
         if(respR1.getCode() == 1){
-            log.info("etc注册失败:SelfCarServiceLImpl.customerEtcRec{},msg{}",etcBindVo,respR1.getMsg());
+            MIX_LOG.info("etc注册失败:SelfCarServiceLImpl.customerEtcRec{},msg{}",etcBindVo,respR1.getMsg());
             return new RespR(false,"注册失败:"+respR1.getMsg());
         }else{
             return new RespR(respR1.getData());
@@ -511,19 +513,19 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
 
     public void updateETCRec(CustomerCarRec customerCarRec){
         //根据车牌号查询是新增还是更新
-        log.info("检验成功入库参数{}",customerCarRec);
+        MIX_LOG.info("检验成功入库参数{}",customerCarRec);
         CustomerCarRec customerCarRec1 = customerCarRecMapper.selectByETC(customerCarRec.getEtcNum());
         if (customerCarRec1 == null) {
-            log.info("检验成功入库新增参数{}",customerCarRec);
+            MIX_LOG.info("检验成功入库新增参数{}",customerCarRec);
             customerCarRecMapper.insert(customerCarRec);
         } else {
-            log.info("检验成功入库更新参数{}",customerCarRec);
+            MIX_LOG.info("检验成功入库更新参数{}",customerCarRec);
             customerCarRecMapper.updateETCByPrimaryKey(customerCarRec);
         }
     }
     @Override
     public RespR customerEtcRecValid(EtcValidVo etcValidVo) {
-        log.info("etc注册校验:SelfCarServiceLImpl.customerEtcRecValid{}",etcValidVo);
+        MIX_LOG.info("etc注册校验:SelfCarServiceLImpl.customerEtcRecValid{}",etcValidVo);
         StringBuffer res = new StringBuffer();
         Customer customer = customerMapper.selectByCustomerName(etcValidVo.getCustomerName());
         if(customer == null || customer.getAccstatus()!=0){
@@ -544,7 +546,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         cardValidCodeToBRequest.setValidCode(etcValidVo.getValidCode());
         RespR<CardValidCodeToBResponse> respR = selfCarInterface.cardValidCodeToB(cardValidCodeToBRequest);
         if(respR.getCode() == 1){
-            log.info("etc注册校验失败:SelfCarServiceLImpl.customerEtcRecValid{},msg",etcValidVo,respR.getMsg());
+            MIX_LOG.info("etc注册校验失败:SelfCarServiceLImpl.customerEtcRecValid{},msg",etcValidVo,respR.getMsg());
             return new RespR(false,"验证失败:"+respR.getMsg());
         }else{
             /**
@@ -570,7 +572,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
     }
     @Override
     public RespR customerCarUnRec(List<CustomerCarRec> customerCarRecs) {
-        log.info("etc解绑:SelfCarServiceLImpl.customerCarUnRec{}",customerCarRecs);
+        MIX_LOG.info("etc解绑:SelfCarServiceLImpl.customerCarUnRec{}",customerCarRecs);
         if(customerCarRecs==null || customerCarRecs.size()<=0){
             return new RespR(false,"无解绑信息");
         }
@@ -589,7 +591,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
                     cardUnbindToBRequest.setCompanyNum(customerRec.getCompanyNum());
                     RespR<CardUnbindToBResponse> respR = selfCarInterface.cardUnbindToB(cardUnbindToBRequest);
                     if(respR.getCode() == 1){
-                        log.info("etc解绑失败:SelfCarServiceLImpl.customerCarUnRec{},msg{}",customerCarRecs,respR.getMsg());
+                        MIX_LOG.info("etc解绑失败:SelfCarServiceLImpl.customerCarUnRec{},msg{}",customerCarRecs,respR.getMsg());
                         res.append(customerCarRec.getEtcNum()+","+customerCarRec.getCarNum()+"解绑失败;"+"#");
                     }else{
                         customerCarRec.setRecStatus(2);

+ 6 - 2
src/main/java/com/jkcredit/invoice/service/manager/impl/ParamServiceImpl.java

@@ -6,8 +6,10 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.jkcredit.invoice.mapper.manager.ParamMapper;
 import com.jkcredit.invoice.model.entity.manager.Param;
 import com.jkcredit.invoice.service.manager.ParamService;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
 
@@ -18,10 +20,12 @@ import org.springframework.transaction.annotation.Transactional;
  * @create: 2019-05-28 17:53
  * @version: V1.0
  **/
-@Slf4j
 @Service
 public class ParamServiceImpl extends ServiceImpl<ParamMapper, Param> implements ParamService {
 
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+
     @Override
     public IPage getParamWithRolePage(Page page, Param param) {
         return baseMapper.getParamsPage(page, param);

+ 6 - 2
src/main/java/com/jkcredit/invoice/service/nocar/impl/NoCarBillWayImportServiceImpl.java

@@ -6,15 +6,19 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.jkcredit.invoice.mapper.waybill.NoCarWaybillImprtMapper;
 import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
 import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
 import java.util.List;
 
-@Slf4j
 @Service
 public class NoCarBillWayImportServiceImpl extends ServiceImpl<NoCarWaybillImprtMapper,NoCarWayBill> implements NoCarBillWayImportService{
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
+
     @Autowired
     NoCarWaybillImprtMapper noCarWaybillMapperImprt;
     @Override

+ 19 - 17
src/main/java/com/jkcredit/invoice/service/nocar/impl/NoCarBillWayServiceImpl.java

@@ -5,7 +5,6 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
-import com.jkcredit.invoice.mapper.customer.CustomerRecMapper;
 import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
 import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
 import com.jkcredit.invoice.model.entity.customer.CustomerRec;
@@ -17,8 +16,10 @@ import com.jkcredit.invoice.service.lowerService.NoCarService;
 import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
 import com.jkcredit.invoice.service.nocar.NoCarBillWayService;
 import com.jkcredit.invoice.util.DateUtil;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.util.StringUtils;
@@ -26,9 +27,10 @@ import org.springframework.util.StringUtils;
 import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
-@Slf4j
 @Service
 public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCarWayBill> implements NoCarBillWayService{
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
     @Autowired
     NoCarWaybillMapper noCarWaybillMapper;
 
@@ -69,7 +71,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
     }
     @Override
     public RespR batchBillWayStart(List<NoCarWayBill> noCarWayBills,String customerName) {
-        log.info("开始平台指令上传NoCarBillWayServiceImpl.batchBillWayStart,上传数量"+noCarWayBills.size());
+        MIX_LOG.info("开始平台指令上传NoCarBillWayServiceImpl.batchBillWayStart,上传数量"+noCarWayBills.size());
         if(!customerService.checkMoneyEnough(customerName)){
             return new RespR(false,"余额不足");
         }
@@ -116,7 +118,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
 
                     }
                     if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96){
-                        log.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
+                        MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
                         noCarWaybillMapperImprt.updateBillway(-2,"失败,承运时长超96小时#",noCarWayBill);
                         noCarWayBill.setBillwayStatus(-2);
                         noCarWayBill.setFailReason("失败,承运时长超96小时");
@@ -170,7 +172,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                     }
 
                 });
-                log.error("开始平台指令上传失败NoCarBillWayServiceImpl.batchBillWayStart:{}",stringBuffer.toString());
+                MIX_LOG.error("开始平台指令上传失败NoCarBillWayServiceImpl.batchBillWayStart:{}",stringBuffer.toString());
             }
         }).start();
 
@@ -191,7 +193,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
             public void run() {
                 noCarWayBills.parallelStream().forEach(noCarWayBill -> {
                     try {
-                        log.info("kai shi chu li li si yun dan"+noCarWayBill.getBillNum());
+                        MIX_LOG.info("kai shi chu li li si yun dan"+noCarWayBill.getBillNum());
                         //根据税号,查询备案企业
                         CustomerRec customerRec = new CustomerRec();
                         customerRec.setCustomerName(customerName);
@@ -223,7 +225,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                         noCarWayBill.setCompanyName(customerRec.getCompanyName());
                         noCarWayBill.setCompanyNum(customerRec.getCompanyNum());
                         if(DateUtil.getDistanceDays(noCarWayBill.getStartTime(),new Date())>-20){
-                            log.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
+                            MIX_LOG.info("历史运单开始上传失败:NoCarServiceImpl.noCarHisWaybillStart{},msg{}",noCarWayBill,"必须是二十天前的运单");
                             noCarWayBill.setBillwayStatus(-2);
                             noCarWayBill.setFailReason("失败,运单未满20天时效");
                             noCarWaybillMapperImprt.updateBillway(-2,"失败,运单未满20天时效#",noCarWayBill);
@@ -235,7 +237,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                             noCarWayBill.setFailReason("运单已经超时,请拆分");
                             insertOrUpdateBill(noCarWayBill,noCarWayBillDb);
                             noCarWaybillMapperImprt.updateBillway(-2,"运单已经超时,请拆分#",noCarWayBill);
-                            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
+                            MIX_LOG.info("运单结束失败:NoCarServiceImpl.noCarWaybillStart{},msg{}",noCarWayBill,"运单已经超时,请拆分");
                             return;
                         }
                         //1.查询是否有车辆备案 /
@@ -284,22 +286,22 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                             noCarWayBill.setBillwayStatus(-2);
                             noCarWayBill.setFailReason(respR.getMsg());
                             insertOrUpdateBill(noCarWayBill,noCarWayBillDb);
-                            log.info(noCarWayBill.getBillNum()+"#开始指令失败"+respR.getMsg());
+                            MIX_LOG.info(noCarWayBill.getBillNum()+"#开始指令失败"+respR.getMsg());
                         }else{
-                            log.info(noCarWayBill.getBillNum()+"#开始指令成功"+respR.getMsg());
+                            MIX_LOG.info(noCarWayBill.getBillNum()+"#开始指令成功"+respR.getMsg());
                             //3.kais指令上传
                             respR = noCarService.noCarHisWaybillEnd(noCarWayBillClo,noCarWayBillClo);
 
                             if(respR.getCode() == 1){
                                 noCarWaybillMapperImprt.updateBillway(1,respR.getMsg(),noCarWayBill);
-                                log.info(noCarWayBill.getBillNum()+"#结束指令失败"+respR.getMsg());
+                                MIX_LOG.info(noCarWayBill.getBillNum()+"#结束指令失败"+respR.getMsg());
                                 stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
                             }else{
                                 noCarWaybillMapperImprt.updateBillway(2,respR.getMsg(),noCarWayBill);
-                                log.info(noCarWayBill.getBillNum()+"#结束指令成功"+respR.getMsg());
+                                MIX_LOG.info(noCarWayBill.getBillNum()+"#结束指令成功"+respR.getMsg());
                             }
                         }
-                        log.info("kai shi chu li li si yun dan"+noCarWayBill.getBillNum());
+                        MIX_LOG.info("kai shi chu li li si yun dan"+noCarWayBill.getBillNum());
                     }catch (Exception e){
                         e.printStackTrace();
                     }
@@ -307,7 +309,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
 
                 });
                 if(!StringUtils.isEmpty(stringBuffer.toString())){
-                    log.error(stringBuffer.toString());
+                    MIX_LOG.error(stringBuffer.toString());
                 }
             }
         }).start();
@@ -317,7 +319,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
 
     @Override
     public RespR batchBillWayEnd(List<NoCarWayBill> noCarWayBills, String customerName) {
-        log.error("结束平台指令上传数量NoCarBillWayServiceImpl.batchBillWayEnd:{}",noCarWayBills.size());
+        MIX_LOG.error("结束平台指令上传数量NoCarBillWayServiceImpl.batchBillWayEnd:{}",noCarWayBills.size());
         if(!customerService.checkMoneyEnough(customerName)){
             return new RespR(false,"余额不足");
         }
@@ -350,7 +352,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                 });
 
                 if(!StringUtils.isEmpty(stringBuffer.toString())){
-                    log.error("开始平台指令上传失败NoCarBillWayServiceImpl.batchBillWayEnd:{}",stringBuffer.toString());
+                    MIX_LOG.error("开始平台指令上传失败NoCarBillWayServiceImpl.batchBillWayEnd:{}",stringBuffer.toString());
                 }
             }
         }).start();

+ 27 - 19
src/main/java/com/jkcredit/invoice/service/upService/impl/CommInterFaceImpl.java

@@ -4,32 +4,40 @@ import cn.com.taiji.common.manager.net.http.binclient.ApiRequestException;
 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.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
-@Slf4j
 @Service("commInterFace")
 public class CommInterFaceImpl implements CommInterFace{
+
+    Logger XING_YUN_LOG = LoggerUtil.logger(LogFileName.XING_YUN_LOG);
+    
     @Override
     public RespR<CompanyQueryResponse> companyQuery(CompanyQueryRequest companyQueryRequest) {
         String fileName = companyQueryRequest.getFilename();
         long startTime = System.currentTimeMillis();
         try {
-            log.info("CommInterFaceImpl.companyQuery上游接口请求参数:{}",  companyQueryRequest.toString());
+            XING_YUN_LOG.info("CommInterFaceImpl.companyQuery上游接口请求参数:{}",  companyQueryRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             CompanyQueryResponse response= ETCCommHelper.upload(fileName, companyQueryRequest, CompanyQueryResponse.class);
-            log.info("CommInterFaceImpl.companyQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), companyQueryRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("CommInterFaceImpl.companyQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), companyQueryRequest.toString(),System.currentTimeMillis()-startTime);
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error("CommInterFaceImpl.companyQuery:{}",e.getMessage()+ " ,请求参数:"+companyQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.companyQuery:{}",e.getMessage()+ " ,请求参数:"+companyQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error("CommInterFaceImpl.companyQuery:{}",apie.getMessage()+ " ,请求参数:"+companyQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.companyQuery:{}",apie.getMessage()+ " ,请求参数:"+companyQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
+        }catch (Exception e) {
+            XING_YUN_LOG.error("CommInterFaceImpl.companyQuery:{}",e.getMessage()+ " ,请求参数:"+companyQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            e.printStackTrace();
+            return new RespR(false,"网络异常,请联系管理人员");
         }
     }
 
@@ -39,17 +47,17 @@ public class CommInterFaceImpl implements CommInterFace{
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("CommInterFaceImpl.addCompany请求参数:{}", companyAddRequest.toString());
+            XING_YUN_LOG.info("CommInterFaceImpl.addCompany请求参数:{}", companyAddRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             CompanyAddResponse response=ETCCommHelper.upload(fileName, companyAddRequest, CompanyAddResponse.class);
-            log.info("CommInterFaceImpl.addCompany上游接口返回:{},请求参数:{},cost={}ms", response.toString(), companyAddRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("CommInterFaceImpl.addCompany上游接口返回:{},请求参数:{},cost={}ms", response.toString(), companyAddRequest.toString(),System.currentTimeMillis()-startTime);
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error("CommInterFaceImpl.addCompany:{}", e.getMessage()+ " ,请求参数:"+companyAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.addCompany:{}", e.getMessage()+ " ,请求参数:"+companyAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error("CommInterFaceImpl.addCompany:{}", apie.getMessage()+ " ,请求参数:"+companyAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.addCompany:{}", apie.getMessage()+ " ,请求参数:"+companyAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -61,18 +69,18 @@ public class CommInterFaceImpl implements CommInterFace{
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("CommInterFaceImpl.b2bContractAdd上游请求参数:{}",contractAddRequest.toString());
+            XING_YUN_LOG.info("CommInterFaceImpl.b2bContractAdd上游请求参数:{}",contractAddRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             B2bContractAddResponse response=ETCCommHelper.upload(fileName, contractAddRequest, B2bContractAddResponse.class);
-            log.info("CommInterFaceImpl.b2bContractAdd上游接口返回:{},请求参数:{},cost={}ms", response.toString(), contractAddRequest.toString(),System.currentTimeMillis()-startTime);
-            log.info("conName"+response.getContrantNum());
+            XING_YUN_LOG.info("CommInterFaceImpl.b2bContractAdd上游接口返回:{},请求参数:{},cost={}ms", response.toString(), contractAddRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("conName"+response.getContrantNum());
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
-            log.error("CommInterFaceImpl.b2bContractAdd:{}",e.getMessage()+ " ,请求参数:"+contractAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.b2bContractAdd:{}",e.getMessage()+ " ,请求参数:"+contractAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error("CommInterFaceImpl.b2bContractAdd:{}",apie.getMessage()+ " ,请求参数:"+contractAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.b2bContractAdd:{}",apie.getMessage()+ " ,请求参数:"+contractAddRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -83,19 +91,19 @@ public class CommInterFaceImpl implements CommInterFace{
         String fileName = b2bContractQueryRequest.getFilename();
         long startTime = System.currentTimeMillis();
         try {
-            log.info("CommInterFaceImpl.b2bContractQuery上游请求参数:{}",  b2bContractQueryRequest.toString());
+            XING_YUN_LOG.info("CommInterFaceImpl.b2bContractQuery上游请求参数:{}",  b2bContractQueryRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             B2bContractQueryResponse response=ETCCommHelper.upload(fileName, b2bContractQueryRequest, B2bContractQueryResponse.class);
-            log.info("CommInterFaceImpl.b2bContractQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2bContractQueryRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("CommInterFaceImpl.b2bContractQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2bContractQueryRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
-            log.error("CommInterFaceImpl.b2bContractQuery:{}",  e.getMessage()+ " ,请求参数:"+b2bContractQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.b2bContractQuery:{}",  e.getMessage()+ " ,请求参数:"+b2bContractQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
             apie.printStackTrace();
-            log.error("CommInterFaceImpl.b2bContractQuery:{}",  apie.getMessage()+ " ,请求参数:"+b2bContractQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error("CommInterFaceImpl.b2bContractQuery:{}",  apie.getMessage()+ " ,请求参数:"+b2bContractQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             return new RespR(false,apie.getMessage());
         }
     }

+ 41 - 39
src/main/java/com/jkcredit/invoice/service/upService/impl/NoCarInterfaceImpl.java

@@ -1,40 +1,42 @@
 package com.jkcredit.invoice.service.upService.impl;
 import cn.com.taiji.common.manager.net.http.binclient.ApiRequestException;
 import cn.com.taiji.sdk.comm.ETCCommHelper;
-import cn.com.taiji.sdk.model.comm.protocol.eoms.company.*;
 import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryRequest;
 import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryResponse;
 import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleRegisterRequest;
 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.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
 
-@Slf4j
 @Service("noCarInterface")
 public class NoCarInterfaceImpl implements NoCarInterface {
 
+    Logger XING_YUN_LOG = LoggerUtil.logger(LogFileName.XING_YUN_LOG);
+    
     @Override
     public RespR<VehicleRegisterResponse> vehicleRegister(VehicleRegisterRequest registerRequest) {
         String fileName = registerRequest.getFilename();
         long startTime = System.currentTimeMillis();
         try {
-            log.info("NoCarInterfaceImpl.vehicleRegister,请求参数:{}",  registerRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.vehicleRegister,请求参数:{}",  registerRequest.toString());
             VehicleRegisterResponse response=ETCCommHelper.upload(fileName, registerRequest, VehicleRegisterResponse.class);
-            log.info("NoCarInterfaceImpl.vehicleRegister上游接口返回:{},请求参数:{},cost={}ms", response.toString(), registerRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.vehicleRegister上游接口返回:{},请求参数:{},cost={}ms", response.toString(), registerRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
             e.printStackTrace();
-            log.error(e.getMessage() + " ,请求参数:"+registerRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage() + " ,请求参数:"+registerRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
             apie.printStackTrace();
-            log.error(apie.getMessage()+ " ,请求参数:"+registerRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+registerRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             return new RespR(false,apie.getMessage());
         }
     }
@@ -44,18 +46,18 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         String fileName = vehicleQueryRequest.getFilename();
         long startTime = System.currentTimeMillis();
         try {
-            log.info("NoCarInterfaceImpl.vehicleQuery上游请求参数:{}", vehicleQueryRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.vehicleQuery上游请求参数:{}", vehicleQueryRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             VehicleQueryResponse response=ETCCommHelper.upload(fileName, vehicleQueryRequest, VehicleQueryResponse.class);
-            log.info("NoCarInterfaceImpl.vehicleQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), vehicleQueryRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.vehicleQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), vehicleQueryRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+vehicleQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+vehicleQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+vehicleQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+vehicleQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
 
             return new RespR(false,apie.getMessage());
@@ -68,17 +70,17 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("NoCarInterfaceImpl.waybillStart上游请求参数:{}", waybillStartRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillStart上游请求参数:{}", waybillStartRequest.toString());
             WaybillStartResponse response=ETCCommHelper.upload(fileName, waybillStartRequest, WaybillStartResponse.class);
-            log.info("NoCarInterfaceImpl.waybillStart上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillStartRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillStart上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillStartRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -90,17 +92,17 @@ public class NoCarInterfaceImpl implements NoCarInterface {
 
         String fileName = waybillEndRequest.getFilename();
         try {
-            log.info("NoCarInterfaceImpl.waybillEnd请求参数:{}", waybillEndRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillEnd请求参数:{}", waybillEndRequest.toString());
             WaybillEndResponse response=ETCCommHelper.upload(fileName, waybillEndRequest, WaybillEndResponse.class);
-            log.info("NoCarInterfaceImpl.waybillEnd上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillEndRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillEnd上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillEndRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -112,19 +114,19 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("NoCarInterfaceImpl.waybillHistoryStart上游接口请求参数:{}", waybillHistoryStartRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillHistoryStart上游接口请求参数:{}", waybillHistoryStartRequest.toString());
 
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillHistoryStartResponse response=ETCCommHelper.upload(fileName, waybillHistoryStartRequest, WaybillHistoryStartResponse.class);
-            log.info("NoCarInterfaceImpl.waybillHistoryStart上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillHistoryStartRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillHistoryStart上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillHistoryStartRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillHistoryStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillHistoryStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillHistoryStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillHistoryStartRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -136,18 +138,18 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("NoCarInterfaceImpl.waybillHistoryEnd请求参数:{}",  waybillHistoryEndRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillHistoryEnd请求参数:{}",  waybillHistoryEndRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillHistoryEndResponse response=ETCCommHelper.upload(fileName, waybillHistoryEndRequest, WaybillHistoryEndResponse.class);
-            log.info("NoCarInterfaceImpl.waybillHistoryEnd上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillHistoryEndRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillHistoryEnd上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillHistoryEndRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillHistoryEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillHistoryEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillHistoryEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillHistoryEndRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -159,18 +161,18 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("NoCarInterfaceImpl.waybillNumFindInvoice请求参数:{}", waybillNumFindInvoiceRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillNumFindInvoice请求参数:{}", waybillNumFindInvoiceRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillNumFindInvoiceResponse response=ETCCommHelper.upload(fileName, waybillNumFindInvoiceRequest, WaybillNumFindInvoiceResponse.class);
-            log.info("NoCarInterfaceImpl.waybillNumFindInvoice上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillNumFindInvoiceRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillNumFindInvoice上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillNumFindInvoiceRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillNumFindInvoiceRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillNumFindInvoiceRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillNumFindInvoiceRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillNumFindInvoiceRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -183,17 +185,17 @@ public class NoCarInterfaceImpl implements NoCarInterface {
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("NoCarInterfaceImpl.waybillInvoiceRedQuery请求参数:{}",  waybillInvoiceRedQueryRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillInvoiceRedQuery请求参数:{}",  waybillInvoiceRedQueryRequest.toString());
             WaybillInvoiceRedQueryResponse response=ETCCommHelper.upload(fileName, waybillInvoiceRedQueryRequest, WaybillInvoiceRedQueryResponse.class);
-            log.info("NoCarInterfaceImpl.waybillInvoiceRedQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillInvoiceRedQueryRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillInvoiceRedQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillInvoiceRedQueryRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillInvoiceRedQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillInvoiceRedQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillInvoiceRedQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillInvoiceRedQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -205,18 +207,18 @@ public class NoCarInterfaceImpl implements NoCarInterface {
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("NoCarInterfaceImpl.waybillCountQuery上游请求参数:{}", waybillCountQueryRequest.toString());
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillCountQuery上游请求参数:{}", waybillCountQueryRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             WaybillCountQueryResponse response=ETCCommHelper.upload(fileName, waybillCountQueryRequest, WaybillCountQueryResponse.class);
-            log.info("NoCarInterfaceImpl.waybillCountQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillCountQueryRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("NoCarInterfaceImpl.waybillCountQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), waybillCountQueryRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+waybillCountQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+waybillCountQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+waybillCountQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+waybillCountQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }

+ 46 - 43
src/main/java/com/jkcredit/invoice/service/upService/impl/SelfCarInterfaceImpl.java

@@ -2,21 +2,24 @@ package com.jkcredit.invoice.service.upService.impl;
 
 import cn.com.taiji.common.manager.net.http.binclient.ApiRequestException;
 import cn.com.taiji.sdk.comm.ETCCommHelper;
-import cn.com.taiji.sdk.model.comm.protocol.eoms.company.*;
 import cn.com.taiji.sdk.model.comm.protocol.tts.card.server.*;
 import cn.com.taiji.sdk.model.comm.protocol.tts.invoice.server.*;
 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.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.stereotype.Service;
 
 import java.io.IOException;
 
-@Slf4j
 @Service("selfCarInterface")
 public class SelfCarInterfaceImpl  implements SelfCarInterface{
+
+    Logger XING_YUN_LOG = LoggerUtil.logger(LogFileName.XING_YUN_LOG);
+    
     @Override
     public RespR<CardBindQueryListToBResponse> cardBindQueryListToB(CardBindQueryListToBRequest cardBindQueryListToBRequest) {
         String fileName = cardBindQueryListToBRequest.getFilename();
@@ -24,17 +27,17 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.cardBindQueryListToB请求参数:{}", cardBindQueryListToBRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardBindQueryListToB请求参数:{}", cardBindQueryListToBRequest.toString());
             CardBindQueryListToBResponse response=ETCCommHelper.upload(fileName, cardBindQueryListToBRequest, CardBindQueryListToBResponse.class);
-            log.info("SelfCarInterfaceImpl.cardBindQueryListToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardBindQueryListToBRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardBindQueryListToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardBindQueryListToBRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+cardBindQueryListToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+cardBindQueryListToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+cardBindQueryListToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+cardBindQueryListToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -46,18 +49,18 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("SelfCarInterfaceImpl.cardQueryCardToB请求参数:{}", cardQueryCardToBRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardQueryCardToB请求参数:{}", cardQueryCardToBRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             CardQueryCardToBResponse response=ETCCommHelper.upload(fileName, cardQueryCardToBRequest, CardQueryCardToBResponse.class);
-            log.info("SelfCarInterfaceImpl.cardQueryCardToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardQueryCardToBRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardQueryCardToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardQueryCardToBRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+cardQueryCardToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+cardQueryCardToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+cardQueryCardToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+cardQueryCardToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -70,18 +73,18 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.cardBindingToB上游请求参数:{}", cardBindingToBRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardBindingToB上游请求参数:{}", cardBindingToBRequest.toString());
             CardBindingToBResponse response=ETCCommHelper.upload(fileName, cardBindingToBRequest, CardBindingToBResponse.class);
-            log.info("SelfCarInterfaceImpl.cardBindingToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardBindingToBRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardBindingToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardBindingToBRequest.toString(),System.currentTimeMillis()-startTime);
 
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+cardBindingToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+cardBindingToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+cardBindingToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+cardBindingToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -94,18 +97,18 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.cardValidCodeToB上游请求参数:{}", cardValidCodeToBRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardValidCodeToB上游请求参数:{}", cardValidCodeToBRequest.toString());
             CardValidCodeToBResponse response=ETCCommHelper.upload(fileName, cardValidCodeToBRequest, CardValidCodeToBResponse.class);
-            log.info("SelfCarInterfaceImpl.cardValidCodeToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardValidCodeToBRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardValidCodeToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardValidCodeToBRequest.toString(),System.currentTimeMillis()-startTime);
 
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+cardValidCodeToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+cardValidCodeToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+cardValidCodeToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+cardValidCodeToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -118,18 +121,18 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.cardUnbindToB上游请求参数:{}", cardUnbindToBRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardUnbindToB上游请求参数:{}", cardUnbindToBRequest.toString());
             CardUnbindToBResponse response=ETCCommHelper.upload(fileName, cardUnbindToBRequest, CardUnbindToBResponse.class);
-            log.info("SelfCarInterfaceImpl.cardUnbindToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardUnbindToBRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardUnbindToB上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardUnbindToBRequest.toString(),System.currentTimeMillis()-startTime);
 
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+cardUnbindToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+cardUnbindToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+cardUnbindToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+cardUnbindToBRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -142,18 +145,18 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.cardTrade上游请求参数:{}", cardTradeRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardTrade上游请求参数:{}", cardTradeRequest.toString());
             CardTradeResponse response=ETCCommHelper.upload(fileName, cardTradeRequest, CardTradeResponse.class);
-            log.info("SelfCarInterfaceImpl.cardTrade上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardTradeRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.cardTrade上游接口返回:{},请求参数:{},cost={}ms", response.toString(), cardTradeRequest.toString(),System.currentTimeMillis()-startTime);
 
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+cardTradeRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+cardTradeRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请稍后再试");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+cardTradeRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+cardTradeRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -166,16 +169,16 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.b2BInvoiceApply上游请求参数:{}",  b2BInvoiceApplyRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2BInvoiceApply上游请求参数:{}",  b2BInvoiceApplyRequest.toString());
             B2BInvoiceApplyResponse response=ETCCommHelper.upload(fileName, b2BInvoiceApplyRequest, B2BInvoiceApplyResponse.class);
-            log.info("SelfCarInterfaceImpl.b2BInvoiceApply上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2BInvoiceApplyRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2BInvoiceApply上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2BInvoiceApplyRequest.toString(),System.currentTimeMillis()-startTime);
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+b2BInvoiceApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+b2BInvoiceApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+b2BInvoiceApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+b2BInvoiceApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -187,19 +190,19 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("SelfCarInterfaceImpl.b2BInvoiceQuery上游请求参数:{}", b2BInvoiceQueryRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2BInvoiceQuery上游请求参数:{}", b2BInvoiceQueryRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             B2BInvoiceQueryResponse response=ETCCommHelper.upload(fileName, b2BInvoiceQueryRequest, B2BInvoiceQueryResponse.class);
-            log.info("SelfCarInterfaceImpl.b2BInvoiceQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2BInvoiceQueryRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2BInvoiceQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2BInvoiceQueryRequest.toString(),System.currentTimeMillis()-startTime);
 
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+b2BInvoiceQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+b2BInvoiceQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+b2BInvoiceQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+b2BInvoiceQueryRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -212,17 +215,17 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
 
         try {
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
-            log.info("SelfCarInterfaceImpl.b2bContractQuery上游请求参数:{}",b2BInvoiceQueryByApplyRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2bContractQuery上游请求参数:{}",b2BInvoiceQueryByApplyRequest.toString());
             B2BInvoiceQueryByApplyResponse response=ETCCommHelper.upload(fileName, b2BInvoiceQueryByApplyRequest, B2BInvoiceQueryByApplyResponse.class);
-            log.info("SelfCarInterfaceImpl.b2bContractQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2BInvoiceQueryByApplyRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2bContractQuery上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2BInvoiceQueryByApplyRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+b2BInvoiceQueryByApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+b2BInvoiceQueryByApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+b2BInvoiceQueryByApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+b2BInvoiceQueryByApplyRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }
@@ -234,18 +237,18 @@ public class SelfCarInterfaceImpl  implements SelfCarInterface{
         long startTime = System.currentTimeMillis();
 
         try {
-            log.info("SelfCarInterfaceImpl.b2bInvoicePackage上游请求参数:{}", b2bInvoicePackageRequest.toString());
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2bInvoicePackage上游请求参数:{}", b2bInvoicePackageRequest.toString());
             //(4)指定协议的响应模型(IssuerUploadResponse),调用upload 发送数据
             B2bInvoicePackageResponse response=ETCCommHelper.upload(fileName, b2bInvoicePackageRequest, B2bInvoicePackageResponse.class);
-            log.info("SelfCarInterfaceImpl.b2bInvoicePackage上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2bInvoicePackageRequest.toString(),System.currentTimeMillis()-startTime);
+            XING_YUN_LOG.info("SelfCarInterfaceImpl.b2bInvoicePackage上游接口返回:{},请求参数:{},cost={}ms", response.toString(), b2bInvoicePackageRequest.toString(),System.currentTimeMillis()-startTime);
 
             return new RespR<>(response);
         } catch (IOException e) {
-            log.error(e.getMessage()+ " ,请求参数:"+b2bInvoicePackageRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(e.getMessage()+ " ,请求参数:"+b2bInvoicePackageRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             e.printStackTrace();
             return new RespR(false,"网络异常,请联系管理人员");
         }catch (ApiRequestException apie) {
-            log.error(apie.getMessage()+ " ,请求参数:"+b2bInvoicePackageRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
+            XING_YUN_LOG.error(apie.getMessage()+ " ,请求参数:"+b2bInvoicePackageRequest.toString()+" ,cost="+(System.currentTimeMillis()-startTime)+"ms");
             apie.printStackTrace();
             return new RespR(false,apie.getMessage());
         }

+ 6 - 2
src/main/java/com/jkcredit/invoice/service/user/impl/UserServiceImpl.java

@@ -12,8 +12,10 @@ import com.jkcredit.invoice.service.customer.CustomerService;
 import com.jkcredit.invoice.service.user.RoleService;
 import com.jkcredit.invoice.service.user.UserService;
 import com.jkcredit.invoice.util.DataSignUtil;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
 import com.jkcredit.invoice.util.RespR;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
@@ -26,9 +28,11 @@ import java.util.List;
  * @create: 2019-05-28 17:53
  * @version: V1.0
  **/
-@Slf4j
 @Service
 public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
+
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+
     @Autowired
     private RoleService roleService;
 

+ 16 - 13
src/main/java/com/jkcredit/invoice/task/ScheduledBillTask.java

@@ -4,7 +4,6 @@ import com.jkcredit.invoice.mapper.Binvoce.SelfCarApplMapper;
 import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
 import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
 import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
-import com.jkcredit.invoice.model.entity.invoice.SelfCarAppl;
 import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
 import com.jkcredit.invoice.service.lowerService.NoCarService;
 import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
@@ -12,7 +11,9 @@ import com.jkcredit.invoice.service.lowerService.vo.SelfCarDueQueryVo;
 import com.jkcredit.invoice.service.lowerService.vo.TradeRequestVo;
 import com.jkcredit.invoice.service.manager.ParamService;
 import com.jkcredit.invoice.util.DateUtil;
-import lombok.extern.slf4j.Slf4j;
+import com.jkcredit.invoice.util.LogFileName;
+import com.jkcredit.invoice.util.LoggerUtil;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.scheduling.annotation.Scheduled;
 import org.springframework.stereotype.Component;
@@ -30,8 +31,10 @@ import java.util.List;
  * @version: V1.0
  **/
 @Component
-@Slf4j
 public class ScheduledBillTask {
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
+    
+    
     @Autowired
     NoCarWaybillMapper noCarWaybillMapper;
 
@@ -57,12 +60,12 @@ public class ScheduledBillTask {
         InetAddress addr = InetAddress.getLocalHost();
         String ip  = paramService.getParamsByParamName("CURR_SELF_IP").getParamValue();
 
-        log.info("CURR_SELF_IP"+ip +",address:"+addr);
+        MIX_LOG.info("CURR_SELF_IP"+ip +",address:"+addr);
         if(!addr.getHostAddress().equals(ip)){
-          log.info("!bengjiqikaipao");
+          MIX_LOG.info("!bengjiqikaipao");
           return;
         }else{
-            log.info("bengjiqikaipao");
+            MIX_LOG.info("bengjiqikaipao");
         }
         try {
             delGetInvoce(0);
@@ -90,12 +93,12 @@ public class ScheduledBillTask {
         InetAddress addr = InetAddress.getLocalHost();
         String ip  = paramService.getParamsByParamName("HISTORY_IP").getParamValue();
 
-        log.info("HISTORY_IP"+ip +",address:"+addr);
+        MIX_LOG.info("HISTORY_IP"+ip +",address:"+addr);
         if(!addr.getHostAddress().equals(ip)){
-            log.info("!bengjiqikaipao");
+            MIX_LOG.info("!bengjiqikaipao");
             return;
         }else{
-            log.info("bengjiqikaipao");
+            MIX_LOG.info("bengjiqikaipao");
         }
         try {
             delGetInvoce(1);
@@ -109,12 +112,12 @@ public class ScheduledBillTask {
        InetAddress addr = InetAddress.getLocalHost();
        String ip  = paramService.getParamsByParamName("CURR_SELF_IP").getParamValue();
 
-       log.info("CURR_SELF_IP"+ip +",address:"+addr);
+       MIX_LOG.info("CURR_SELF_IP"+ip +",address:"+addr);
        if(!addr.getHostAddress().equals(ip)){
-           log.info("!bengjiqikaipao");
+           MIX_LOG.info("!bengjiqikaipao");
            return;
        }else{
-           log.info("bengjiqikaipao");
+           MIX_LOG.info("bengjiqikaipao");
        }
        /**
         * 1.查询所有的etc卡
@@ -145,7 +148,7 @@ public class ScheduledBillTask {
               selfCarService.getSelfCarInvoicesByTime(selfCarDueQueryVo);
           }catch (Exception e){
               e.printStackTrace();
-              log.info(customerCarRec.getEtcNum());
+              MIX_LOG.info(customerCarRec.getEtcNum());
           }
        });
       /*  try {

+ 0 - 7
src/main/java/com/jkcredit/invoice/util/DownExcelTemplateUtil.java

@@ -1,13 +1,7 @@
 package com.jkcredit.invoice.util;
 
-import com.jkcredit.invoice.common.CommonConstants;
-import lombok.extern.slf4j.Slf4j;
-import org.springframework.util.ResourceUtils;
 
-import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
-import java.io.*;
-import java.net.URLEncoder;
 
 /**
  * @description:
@@ -15,7 +9,6 @@ import java.net.URLEncoder;
  * @create: 2019-05-31 09:16
  * @version: V1.0
  **/
-@Slf4j
 public class DownExcelTemplateUtil {
 
     public static void downloadExcel(HttpServletResponse response,String fileName) {

+ 0 - 2
src/main/java/com/jkcredit/invoice/util/FileHandleUtil.java

@@ -1,6 +1,5 @@
 package com.jkcredit.invoice.util;
 
-import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.io.FileUtils;
 import org.springframework.util.ResourceUtils;
 
@@ -13,7 +12,6 @@ import java.io.InputStream;
  * SpringBoot上传文件工具类
  * @author LinkinStar
  */
-@Slf4j
 public class FileHandleUtil {
 
 	/** 绝对路径 **/

+ 2 - 3
src/main/java/com/jkcredit/invoice/util/HttpUtil.java

@@ -1,9 +1,8 @@
 package com.jkcredit.invoice.util;
 
 import com.alibaba.fastjson.JSONObject;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
 import org.springframework.http.HttpEntity;
 import org.springframework.http.HttpHeaders;
 import org.springframework.http.MediaType;
@@ -20,8 +19,8 @@ import java.util.Map;
  * @version: V1.0
  **/
 @Component
-@Slf4j
 public class HttpUtil {
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
 
     @Autowired
     private RestTemplate restTemplate;

+ 37 - 0
src/main/java/com/jkcredit/invoice/util/LogFileName.java

@@ -0,0 +1,37 @@
+package com.jkcredit.invoice.util;
+
+import org.apache.commons.lang3.StringUtils;
+
+public enum LogFileName {
+
+    // 与logback.xml的logger name 相同
+    QUERY_LOG("query_log"),
+    XING_YUN_LOG("xingyun_log"),
+    JUMP_LOG("jump_log"),
+    MIX_LOG("mix_log"),
+    GATEWAY_LOG("gateway_log");
+
+    private String logFileName;
+
+    LogFileName(String fileName) {
+        this.logFileName = fileName;
+    }
+
+    public String getLogFileName() {
+        return logFileName;
+    }
+
+    public void setLogFileName(String logFileName) {
+        this.logFileName = logFileName;
+    }
+
+    public static LogFileName getAwardTypeEnum(String value) {
+        LogFileName[] arr = values();
+        for(LogFileName item : arr) {
+            if(null != item && StringUtils.isNotBlank(item.logFileName)) {
+                return item;
+            }
+        }
+        return null;
+    }
+}

+ 19 - 0
src/main/java/com/jkcredit/invoice/util/LoggerUtil.java

@@ -0,0 +1,19 @@
+package com.jkcredit.invoice.util;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class LoggerUtil {
+    public static <T> Logger logger(Class<T> clazz) {
+        return LoggerFactory.getLogger(clazz);
+    }
+
+    /**
+     * 打印到指定的文件下
+     * @param desc 日志文件名称
+     * @return
+     */
+    public static Logger logger(LogFileName desc) {
+        return LoggerFactory.getLogger(desc.getLogFileName());
+    }
+}

+ 0 - 2
src/main/java/com/jkcredit/invoice/util/PlateCheckUtil.java

@@ -1,6 +1,5 @@
 package com.jkcredit.invoice.util;
 
-import lombok.extern.slf4j.Slf4j;
 
 import java.text.ParseException;
 import java.text.SimpleDateFormat;
@@ -13,7 +12,6 @@ import java.util.regex.*;
  * @create: 2019-05-30 17:24
  * @version: V1.0
  **/
-@Slf4j
 public class PlateCheckUtil {
 
     /**

+ 0 - 12
src/main/java/com/jkcredit/invoice/util/ReadExcelUtil.java

@@ -1,16 +1,5 @@
 package com.jkcredit.invoice.util;
 
-import cn.afterturn.easypoi.excel.ExcelImportUtil;
-import cn.afterturn.easypoi.excel.entity.ImportParams;
-import com.jkcredit.invoice.common.CommonConstants;
-import lombok.extern.slf4j.Slf4j;
-import org.springframework.web.multipart.MultipartFile;
-
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.math.BigDecimal;
-import java.util.List;
 
 /**
  * @description:
@@ -18,7 +7,6 @@ import java.util.List;
  * @create: 2019-05-30 16:32
  * @version: V1.0
  **/
-@Slf4j
 public class ReadExcelUtil {
 
 

+ 6 - 9
src/main/java/com/jkcredit/invoice/util/WebFileDownLoadUtils.java

@@ -1,8 +1,7 @@
 package com.jkcredit.invoice.util;
 
-import com.jkcredit.invoice.model.entity.SearchInvoiceResult;
 import com.jkcredit.invoice.model.vo.SearchInvoiceResultVo;
-import lombok.extern.slf4j.Slf4j;
+import org.slf4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Component;
@@ -14,8 +13,6 @@ import java.io.File;
 import java.io.IOException;
 import java.nio.file.Files;
 import java.nio.file.Paths;
-import java.time.Instant;
-import java.time.temporal.ChronoUnit;
 import java.util.Map;
 import java.util.Objects;
 
@@ -26,9 +23,9 @@ import java.util.Objects;
  * @version: V1.0
  **/
 @Component
-@Slf4j
 public class WebFileDownLoadUtils {
-
+    
+    Logger MIX_LOG = LoggerUtil.logger(LogFileName.MIX_LOG);
     /**
      * 使用自定义的httpclient的restTemplate
      */
@@ -56,14 +53,14 @@ public class WebFileDownLoadUtils {
 //        Instant now = Instant.now();
         String completeUrl = addGetQueryParam(url, params);
         ResponseEntity<byte[]> rsp = httpClientTemplate.getForEntity(completeUrl, byte[].class);
-//        log.info("[下载文件] [状态码] code:{}", rsp.getStatusCode());
+//        MIX_LOG.info("[下载文件] [状态码] code:{}", rsp.getStatusCode());
         try {
             String path = getAndCreateDownloadDir(targetDir, searchInvoiceResult, batchNumber);
             Files.write(Paths.get(path), Objects.requireNonNull(rsp.getBody(), "未获取到下载文件"));
         } catch (IOException e) {
-            log.error("[下载文件] 写入失败:", e);
+            MIX_LOG.error("[下载文件] 写入失败:", e);
         }
-//        log.info("[下载文件] 完成,耗时:{}", ChronoUnit.MILLIS.between(now, Instant.now()));
+//        MIX_LOG.info("[下载文件] 完成,耗时:{}", ChronoUnit.MILLIS.between(now, Instant.now()));
     }
 
 

+ 208 - 45
src/main/resources/logback-spring.xml

@@ -1,52 +1,215 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<configuration debug="false" scan="false">
-    <springProperty scop="context" name="spring.application.name" source="spring.application.name" defaultValue=""/>
+<?xml version="1.0" encoding="UTF-8" ?>
+<configuration>
+    <contextName>sys_invoice</contextName>
     <property name="log.path" value="/home/app"/>
-    <!-- 彩色日志格式 -->
-    <property name="CONSOLE_LOG_PATTERN"
-              value="%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n" />
-    <!-- 彩色日志依赖的渲染类 -->
-    <conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter" />
-    <conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />
-    <conversionRule conversionWord="wEx"
-                    converterClass="org.springframework.boot.logging.logback.ExtendedWhitespaceThrowableProxyConverter" />
-    <!-- Console log output -->
-    <appender name="console" class="ch.qos.logback.core.ConsoleAppender">
-        <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
-            <pattern>${CONSOLE_LOG_PATTERN}</pattern>
-        </encoder>
-    </appender>
-
-
-    <appender name="FILE"
-              class="ch.qos.logback.core.rolling.RollingFileAppender">
-
-        <!-- rollingPolicy:当发生滚动时,决定 RollingFileAppender 的行为,涉及文件移动和重命名。 -->
-        <!-- TimeBasedRollingPolicy: 最常用的滚动策略,它根据时间来制定滚动策略,既负责滚动也负责出发滚动 -->
-        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
-            <!-- 活动文件的名字会根据fileNamePattern的值,每隔一段时间改变一次 -->
-            <!-- 文件名:log/sys.2017-12-05.0.log -->
-            <fileNamePattern>${log.path}/log/system.log.%d{yyyy-MM-dd}.log</fileNamePattern>
-            <!-- 每产生一个日志文件,该日志文件的保存期限为30天 -->
-            <maxHistory>60</maxHistory>
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+        <encoder>
+            <Pattern>[%d{HH:mm:ss.SSS}] [%5level] [%thread] %logger{36} %msg%n</Pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+    </appender>
+
+    <appender name="INFO" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/systemInfo.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <!--过滤器,只打INFO级别的日志-->
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>systemInfo.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
         </rollingPolicy>
-            <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
-                <pattern>${CONSOLE_LOG_PATTERN}</pattern>
-            </encoder>
-            <triggeringPolicy  class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
-                <!-- maxFileSize:这是活动文件的大小,默认值是10MB,本篇设置为1KB,只是为了演示 -->
-                <maxFileSize>50M</maxFileSize>
-            </triggeringPolicy>
 
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
     </appender>
-    <!-- Level: FATAL 0  ERROR 3  WARN 4  INFO 6  DEBUG 7 -->
-    <root level="INFO">
-        <appender-ref ref="console" />
-        <appender-ref ref="FILE"/>
-    </root>
 
 
-  <logger name="com.jkcredit.invoice" level="INFO">
-        <appender-ref ref="FILE"/>
+    <appender name="ERROR" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/systemError.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <!--过滤器,只打ERROR级别的日志-->
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>systemError.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
+        </rollingPolicy>
+
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
+    </appender>
+
+    <!--不同业务逻辑的日志打印到不同文件-->
+    <appender name="QUERY_LOG" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/query/query.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>query.%d{yyyy-MM-dd}.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
+        </rollingPolicy>
+
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
+    </appender>
+
+    <appender name="XINGYUN_LOG" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/xingyun/xingyun.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>xingyun.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
+        </rollingPolicy>
+
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
+    </appender>
+
+
+
+    <appender name="GATEWAY_LOG" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/gateway/gateway.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>gateway.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
+        </rollingPolicy>
+
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
+    </appender>
+
+
+    <appender name="JUMP_LOG" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/jump/jump.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>jump.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
+        </rollingPolicy>
+
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
+    </appender>
+
+
+
+    <appender name="MIX_LOG" class="ch.qos.logback.core.rolling.RollingFileAppender">
+        <file>${log.path}/mix/mix_interface.log</file>
+
+        <encoder>
+            <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%msg%n</pattern>
+            <charset>UTF-8</charset>
+        </encoder>
+        <filter class="ch.qos.logback.classic.filter.LevelFilter">
+            <level>ERROR</level>
+            <onMatch>ACCEPT</onMatch>
+            <onMismatch>ACCEPT</onMismatch>
+        </filter>
+
+        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
+            <fileNamePattern>mix_interface.%i.log</fileNamePattern>
+            <minIndex>1</minIndex>
+            <maxIndex>3</maxIndex>
+        </rollingPolicy>
+
+        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
+            <maxFileSize>50MB</maxFileSize>
+        </triggeringPolicy>
+    </appender>
+
+
+       <!-- 不同的业务逻辑日志打印到指定文件夹-->
+    <logger name="query_log" level="info" additivity="false">
+        <appender-ref ref="QUERY_LOG"/>
+    </logger>
+    <logger name="xingyun_log" level="info" additivity="false">
+        <appender-ref ref="XINGYUN_LOG"/>
     </logger>
-</configuration>
+    <logger name="gateway_log" level="info" additivity="false">
+        <appender-ref ref="GATEWAY_LOG"/>
+    </logger>
+    <logger name="jump_log" level="info" additivity="false">
+        <appender-ref ref="JUMP_LOG"/>
+    </logger>
+    <logger name="mix_log" level="info" additivity="false">
+        <appender-ref ref="MIX_LOG"/>
+    </logger>
+
+
+    <!--info和error分开打印-->
+    <root level="INFO">
+        <appender-ref ref="STDOUT"/>
+        <appender-ref ref="INFO"/>
+        <appender-ref ref="ERROR"/>
+    </root>
+
+</configuration>