Browse Source

20211205后端日志更新代码_2

mashengyi 3 năm trước cách đây
mục cha
commit
72cd07c809

+ 2 - 0
src/main/java/com/jkcredit/invoice/credit/custInterface/NoCarInterServiceImpl.java

@@ -185,6 +185,8 @@ public class NoCarInterServiceImpl implements NoCarInterService {
             customerCarRec.setCarColor(plateColor);
             customerCarRec.setCarNum(plateNumber);
             customerCarRec.setCustomerName(appKey);
+            customerCarRec.setBusinessType("2");//无车
+            customerCarRec.setInterType(8);//此处代表仅查询上游接口,无任何处理逻辑
 
             RespR rs = noCarService.customerCarRecQueryUpper(customerCarRec);
             long costtimeend = System.currentTimeMillis();

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

@@ -195,7 +195,7 @@ public class NoCarServiceImpl implements NoCarService{
         RespR<VehicleQueryResponse> respR = noCarInterface.vehicleQuery(vehicleQueryRequest);
         if(respR.getCode() == 1){
             MIX_LOG.info("车辆备案查询失败NoCarServiceImpl.customerCarRecQueryUpper{},msg{}",customerCarRec,respR.getMsg());
-        }else{
+        }else if(8 != customerCarRec.getInterType()){//此处表示仅适用接口查询,不走业务逻辑
             customerCarRec.setRecStatus(1);
             updateCustomerCarRec(customerCarRec);
         }