Browse Source

Revert "代码提交"

This reverts commit 8efae3f
mashengyi 2 years ago
parent
commit
49b735d591

+ 1 - 1
src/main/java/com/jkcredit/invoice/controller/interserver/SelfCarServiceController.java

@@ -98,7 +98,7 @@ public class SelfCarServiceController {
     @PostMapping("/customerETCQuery")
     @ApiOperation(value="", notes="ETC绑定列表查询")
     public RespR customerETCQuery(@RequestBody EtcQueryVo etcQueryVo){
-        return selfCarService.getEtcInfo(etcQueryVo,1);
+        return selfCarService.getEtcInfo(etcQueryVo);
     }
 
 

+ 1 - 1
src/main/java/com/jkcredit/invoice/credit/interserver/SelfCarInterServiceImpl.java

@@ -79,7 +79,7 @@ public class SelfCarInterServiceImpl implements SelfCarInterService {
             etcQueryVo.setPlateNum(plateNum);//车牌号 非必输
             etcQueryVo.setCardId(cardId);//卡号 非必输
             etcQueryVo.setPlateColor(plateColor);//车牌颜色 非必输
-        RespR rs = selfCarService.getEtcInfo(etcQueryVo,0);
+        RespR rs = selfCarService.getEtcInfo(etcQueryVo);
         long costtimeend = System.currentTimeMillis();
         log.info("[-SelfCarInterServiceImpl.customerETCQuery-] result is "
                     + rs.toString() + ", request is " + data + " ,costtime="

+ 1 - 1
src/main/java/com/jkcredit/invoice/service/lowerservice/SelfCarServiceL.java

@@ -53,7 +53,7 @@ public interface SelfCarServiceL {
      * @param etcQueryVo
      * @return
      */
-    RespR getEtcInfo(EtcQueryVo etcQueryVo,int interType);
+    RespR getEtcInfo(EtcQueryVo etcQueryVo);
 
     /**
      * etc备案查询

+ 2 - 2
src/main/java/com/jkcredit/invoice/service/lowerservice/impl/SelfCarServiceLImpl.java

@@ -390,7 +390,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
     }
 
     @Override
-    public RespR getEtcInfo(EtcQueryVo etcQueryVo,int interType) {
+    public RespR getEtcInfo(EtcQueryVo etcQueryVo) {
         log.info("获取etc信息:SelfCarServiceLImpl.getEtcInfo{}",etcQueryVo);
         Customer customer = customerMapper.selectByCustomerName(etcQueryVo.getCustomerName());
         if(customer == null || customer.getAccstatus().intValue() == 1){
@@ -410,7 +410,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
         cardQueryCardToBRequest.setPalteColor(etcQueryVo.getPlateColor());//车牌颜色.非必输
         RespR<CardBindQueryListToBResponse> respR = selfCarInterface.cardBindQueryListToB(cardQueryCardToBRequest);
 
-        if(interType == 0){
+        if(customerRec.getInterType() == 0){
             if(respR.getCode() == 0 && (respR.getData().getResult()==null||respR.getData().getResult().size()<=0)){
                 respR.setCode(2);
             }