Browse Source

后端代码提交

mashengyi 3 years ago
parent
commit
6a19f474ed

+ 34 - 0
src/main/java/com/jkcredit/invoice/controller/localBussiness/CustomerController.java

@@ -1,6 +1,7 @@
 package com.jkcredit.invoice.controller.localBussiness;
 
 import cn.afterturn.easypoi.excel.entity.ExportParams;
+import cn.com.taiji.sdk.model.comm.protocol.eoms.company.B2bCompanyModel;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.jkcredit.invoice.annotation.LoginRequired;
@@ -164,6 +165,39 @@ public class CustomerController {
         customerRecList.add(customerRec);
         return lowerService.customeRec(customerRecList);
     }
+
+    /**
+     * 修改客户状态
+     * @return 用户集合customerRecAdd
+     */
+    @PostMapping("/customeRecQueryUpper")
+    @ApiOperation(value="查询备案信息", notes="手工添加备案信息")
+    @LoginRequired
+    public RespR customeRecQueryUpper(@RequestBody  CustomerRec customerRec) {
+        RespR<List<B2bCompanyModel>> respR = customerService.customerRecQuery(customerRec);
+        if(respR.getCode() == 1){
+            return respR;
+        }else{
+            List<B2bCompanyModel> resArr = respR.getData();
+            if(resArr == null || resArr.size() == 0){
+                return new RespR(false,"未注册,无法回填");
+            }else {
+                B2bCompanyModel b2bCompanyModel = resArr.get(0);
+                customerRec.setCompanyType(b2bCompanyModel.getCompanyType());
+                customerRec.setOperatingRangeType(b2bCompanyModel.getOperatingRangeType());
+                customerRec.setCompanyLeader(b2bCompanyModel.getContact());
+                customerRec.setCompanyLeaderPhone(b2bCompanyModel.getEmergencyTel());
+                customerRec.setCompanyAdress(b2bCompanyModel.getBuyerAddr());
+                customerRec.setCompanyPhone(b2bCompanyModel.getBuyerTel());
+                customerRec.setCompanyOpenbank(b2bCompanyModel.getBuyerBank());
+                customerRec.setCompanyOpenbankAcc(b2bCompanyModel.getBuyerBankAccount());
+                customerRec.setCompanyPhone(b2bCompanyModel.getTel());
+                return new RespR(customerRec);
+            }
+        }
+    }
+
+
     /**
      * 充值
      * @return 用户集合

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

@@ -207,6 +207,11 @@ public class NoCarController {
                 billInvoice.setInvoiceMakeStart(res[0]);
                 billInvoice.setInvoiceMakeEnd(res[1]);
             }
+            if(!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !"null".equals(billInvoice.getCalculateTime())){
+                String [] res =billInvoice.getCalculateTime().split(",");
+                billInvoice.setCalculateTimeStart(res[0]);
+                billInvoice.setCalculateTimeEnd(res[1]);
+            }
             RespR respR = new RespR(nocarInvoiceService.findByPageAndInvoice(page, billInvoice));
             return respR;
         }catch (Exception e){
@@ -278,7 +283,16 @@ public class NoCarController {
     @LoginRequired
     public RespR findNocarInvoicesStatic(BillInvoice billInvoice) {
         try {
-
+            if(!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !"null".equals(billInvoice.getInvoiceMakeTime())){
+                String [] res =billInvoice.getInvoiceMakeTime().split(",");
+                billInvoice.setInvoiceMakeStart(res[0]);
+                billInvoice.setInvoiceMakeEnd(res[1]);
+            }
+            if(!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !"null".equals(billInvoice.getCalculateTime())){
+                String [] res =billInvoice.getCalculateTime().split(",");
+                billInvoice.setCalculateTimeStart(res[0]);
+                billInvoice.setCalculateTimeEnd(res[1]);
+            }
             RespR respR = new RespR(nocarInvoiceService.findInvoiceStatics(billInvoice));
             return respR;
         }catch (Exception e){

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

@@ -114,7 +114,7 @@ public class SimpleCORSFilter implements Filter {
             "/customer/findCustomerRecTimeList",
             "/customer/findCustomerMoney",
             "/customer/customeRecQueryListByPage",
-
+            "/customer/customeRecQueryUpper",
 
             "/noCar/findCarRec",
             "/noCar/findBillWay",

+ 18 - 0
src/main/java/com/jkcredit/invoice/model/entity/invoice/BillInvoice.java

@@ -146,7 +146,9 @@ public class BillInvoice {
      */
     private String calculateTime;
 
+    private String calculateTimeStart;
 
+    private String calculateTimeEnd;
 
     public String getInvoiceNum() {
         return invoiceNum;
@@ -420,6 +422,22 @@ public class BillInvoice {
         this.calculateTime = calculateTime;
     }
 
+    public String getCalculateTimeStart() {
+        return calculateTimeStart;
+    }
+
+    public void setCalculateTimeStart(String calculateTimeStart) {
+        this.calculateTimeStart = calculateTimeStart;
+    }
+
+    public String getCalculateTimeEnd() {
+        return calculateTimeEnd;
+    }
+
+    public void setCalculateTimeEnd(String calculateTimeEnd) {
+        this.calculateTimeEnd = calculateTimeEnd;
+    }
+
     @Override
     public String toString() {
         return "BillInvoice{" +

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

@@ -232,11 +232,19 @@ public class NoCarServiceImpl implements NoCarService{
             noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
             noCarWayBill.setHisFlag(0);
             noCarWayBill.setBillwayStatus(1);
-            noCarWaybillMapper.insert(noCarWayBill);
+            insertOrUpdateBill(noCarWayBill);
         }
         return new RespR("成功");
     }
+    //插入或者更新运单
+    public void insertOrUpdateBill(NoCarWayBill noCarWayBill){
 
+        if(noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum()) == null){
+            noCarWaybillMapper.insert(noCarWayBill);
+        }else{
+            noCarWaybillMapper.updateByBillNum(noCarWayBill);
+        }
+    }
     /**
      * 组装指令报文
      */
@@ -291,7 +299,12 @@ public class NoCarServiceImpl implements NoCarService{
         //查询运单号为开始指令
         NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
         if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==1 ){
-            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束");
+            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束,请检查当前指令状态");
+            if(noCarWayBill1 == null){
+                noCarWayBill1.setBillwayStatus(-2);
+            }
+            noCarWayBill1.setFailReason("当前运单状态无法结束,请检查当前指令状态");
+            insertOrUpdateBill(noCarWayBill1);
             return new RespR(false,"当前运单状态无法结束");
         }
         noCarWayBill1.setDestAddr(noCarWayBill.getDestAddr());
@@ -299,6 +312,7 @@ public class NoCarServiceImpl implements NoCarService{
         noCarWayBill1.setBatchNumEnd(noCarWayBill.getBatchNumEnd());
         if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96){
             noCarWayBill1.setBillwayStatus(4);
+            noCarWayBill1.setFailReason("运单已经超时,请拆分");
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
             log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
             return new RespR(false,"运单已经超时,请拆分");
@@ -313,10 +327,14 @@ public class NoCarServiceImpl implements NoCarService{
         RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
         if(waybillEndResponseRespR.getCode() == 1){
             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,"运单已经超时,请拆分");
             noCarWayBill1.setBillwayStatus(4);
+            noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
             return new RespR(false,"运单已经超时,请拆分");
         }
@@ -355,7 +373,7 @@ public class NoCarServiceImpl implements NoCarService{
             noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
             noCarWayBill.setHisFlag(1);
             noCarWayBill.setBillwayStatus(1);
-            noCarWaybillMapper.insert(noCarWayBill);
+            insertOrUpdateBill(noCarWayBill);
         }
         return new RespR(true);
     }
@@ -386,11 +404,20 @@ public class NoCarServiceImpl implements NoCarService{
         log.info("历史运单结束上传:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"开始");
         //查询运单号为开始指令
         NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
+        if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==0 ){
+            log.info("运单结束失败:NoCarServiceImpl.noCarWaybillEnd{},msg{}",noCarWayBill,"当前运单状态无法结束");
+            if(noCarWayBill1 == null){
+                noCarWayBill1.setBillwayStatus(-2);
+            }
+            noCarWayBill1.setFailReason("当前运单状态无法结束,请检查当前指令状态");
+            insertOrUpdateBill(noCarWayBill1);
+            return new RespR(false,"当前运单状态无法结束");
+        }
         noCarWayBill1.setDestAddr(noCarWayBill.getDestAddr());
         noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
-        //todo 这里再设计一下
         if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96){
             noCarWayBill1.setBillwayStatus(-3);
+            noCarWayBill1.setFailReason("运单已经超时,请拆分");
             noCarWaybillMapper.updateByBillNum(noCarWayBill1);
             log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill,"运单已经超时,请拆分");
             return new RespR(false,"运单已经超时,请拆分");
@@ -408,7 +435,11 @@ public class NoCarServiceImpl implements NoCarService{
         waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
         RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
         if(waybillEndResponseRespR.getCode() == 1){
+            noCarWayBill1.setBillwayStatus(-3);
+            noCarWayBill1.setFailReason(waybillEndResponseRespR.getMsg());
+            noCarWaybillMapper.updateByBillNum(noCarWayBill1);
             log.info("历史运单结束上传失败:NoCarServiceImpl.noCarHisWaybillEnd{},msg{}",noCarWayBill1,waybillEndResponseRespR.getMsg());
+
             return new RespR(false,waybillEndResponseRespR.getMsg());
         }else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
             noCarWayBill.setBillwayStatus(4);

+ 33 - 0
src/main/java/com/jkcredit/invoice/service/nocar/impl/NoCarBillWayServiceImpl.java

@@ -14,6 +14,7 @@ import com.jkcredit.invoice.service.customer.CustomerService;
 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.RespR;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -54,7 +55,15 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
     public IPage<List<NoCarWayBill>> findByPageAndWayBillException(Page page, NoCarWayBill noCarWayBill) {
         return noCarWaybillMapper.selectAllByPageException(page,noCarWayBill);
     }
+    //插入或者更新运单
+    public void insertOrUpdateBill(NoCarWayBill noCarWayBill){
 
+        if(noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum()) == null){
+            noCarWaybillMapper.insert(noCarWayBill);
+        }else{
+            noCarWaybillMapper.updateByBillNum(noCarWayBill);
+        }
+    }
     @Override
     public RespR batchBillWayStart(List<NoCarWayBill> noCarWayBills,String customerName) {
         log.info("开始平台指令上传NoCarBillWayServiceImpl.batchBillWayStart,上传数量"+noCarWayBills.size());
@@ -74,9 +83,15 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
             noCarWayBill.setCustomerName(customerName);
             noCarWayBill.setBatchNum(batchNumber);
             noCarWayBill.setBillwayStatus(-1);
+            noCarWayBill.setHisFlag(0);
+            noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
             noCarWaybillMapperImprt.insertImport(noCarWayBill);
+            insertOrUpdateBill(noCarWayBill);
             if(customerRec == null){
                 noCarWaybillMapperImprt.updateBillway(-2,"企业税号未备案",noCarWayBill);
+                noCarWayBill.setFailReason("企业税号未备案");
+                noCarWayBill.setBillwayStatus(-2);
+                insertOrUpdateBill(noCarWayBill);
                 stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append("企业税号未备案#");
                 return;
             }
@@ -98,6 +113,9 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                 if(respR.getCode() ==1){
                     stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
                     noCarWaybillMapperImprt.updateBillway(-2,respR.getMsg(),noCarWayBill);
+                    noCarWayBill.setBillwayStatus(-2);
+                    noCarWayBill.setFailReason(respR.getMsg());
+                    insertOrUpdateBill(noCarWayBill);
                     return;
                 }
             }
@@ -106,6 +124,9 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
             RespR respR = noCarService.noCarWaybillStart(noCarWayBill);
             if (respR.getCode() == 1){
                 noCarWaybillMapperImprt.updateBillway(-2,respR.getMsg(),noCarWayBill);
+                noCarWayBill.setBillwayStatus(-2);
+                noCarWayBill.setFailReason(respR.getMsg());
+                insertOrUpdateBill(noCarWayBill);
                 stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
             }
             noCarWaybillMapperImprt.updateBillway(1,"",noCarWayBill);
@@ -135,13 +156,19 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                 customerRec = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);
                 noCarWayBill.setCompanyName(customerRec.getCompanyName());
                 noCarWayBill.setCustomerName(customerName);
+                noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
                 noCarWayBill.setBatchNum(batchNumber);
                 noCarWayBill.setTitleType(2);
                 noCarWayBill.setBillwayStatus(-1);
+                noCarWayBill.setHisFlag(1);
                 noCarWaybillMapperImprt.insertImport(noCarWayBill);
+                insertOrUpdateBill(noCarWayBill);
                 if(customerRec == null || customerRec.getRecStatus()!=1){
                     stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append("企业税号未备案#");
                     noCarWaybillMapperImprt.updateBillway(-2,"企业税号未备案#",noCarWayBill);
+                    noCarWayBill.setBillwayStatus(-2);
+                    noCarWayBill.setFailReason("企业税号未备案");
+                    insertOrUpdateBill(noCarWayBill);
                     return;
                 }
 
@@ -162,6 +189,9 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                     if(respR.getCode() ==1){
                         noCarWaybillMapperImprt.updateBillway(-2,respR.getMsg(),noCarWayBill);
                         stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
+                        noCarWayBill.setBillwayStatus(-2);
+                        noCarWayBill.setFailReason(respR.getMsg());
+                        insertOrUpdateBill(noCarWayBill);
                         return;
                     }
                 }
@@ -179,6 +209,9 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
                 if (respR.getCode() == 1){
                     stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
                     noCarWaybillMapperImprt.updateBillway(-2,respR.getMsg(),noCarWayBill);
+                    noCarWayBill.setBillwayStatus(-2);
+                    noCarWayBill.setFailReason(respR.getMsg());
+                    insertOrUpdateBill(noCarWayBill);
                     log.info(noCarWayBill.getBillNum()+"#开始指令失败"+respR.getMsg());
                 }else{
                     log.info(noCarWayBill.getBillNum()+"#开始指令成功"+respR.getMsg());

+ 0 - 1
src/main/resources/logback-spring.xml

@@ -54,6 +54,5 @@
 
     <logger name="com.jkcredit.invoice" level="INFO">
         <appender-ref ref="syslog"/>
-        <appender-ref ref="console" />
     </logger>
 </configuration>

+ 8 - 8
src/main/resources/mapper/calculateInfor/SefCarCalculateInforMapper.xml

@@ -28,17 +28,17 @@
         select
         <include refid="baseSql" />
         from t_SelfCalculateInfor
-        <if test="customId != null and customId != ''">
-            and customId LIKE CONCAT('%',#{customId},'%')
+        <if test="calculateInfor.customId != null and calculateInfor.customId != ''">
+            and customId LIKE CONCAT('%',#{calculateInfor.customId},'%')
         </if>
-        <if test="companyReferencenum != null and companyReferencenum != ''">
-            and companyReferencenum =#{companyReferencenum}
+        <if test="calculateInfor.companyReferencenum != null and calculateInfor.companyReferencenum != ''">
+            and companyReferencenum =#{calculateInfor.companyReferencenum}
         </if>
-        <if test="etcNum != null and etcNum != ''">
-            and etcNum = #{etcNum}
+        <if test="calculateInfor.etcNum != null and calculateInfor.etcNum != ''">
+            and etcNum = #{calculateInfor.etcNum}
         </if>
-        <if test="calTime != null and calTime != ''">
-            and calTime BETWEEN #{calTimeStart} and #{calTimeEnd}
+        <if test="calculateInfor.calTime != null and calculateInfor.calTime != ''">
+            and calTime BETWEEN #{calTimeStart} and #{calculateInfor.calTimeEnd}
         </if>
     </select>
     <select id="selectByEtcAndTime" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.Calculate.SelfCarCalculateInfor">

+ 12 - 0
src/main/resources/mapper/invoice/BillInvoiceMapper.xml

@@ -96,6 +96,12 @@
             <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
                 and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
             </if>
+            <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
+                and exists(SELECT  1 from t_CalculateInfor g where g.tradeId = transactionId and
+                g.calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
+                )
+
+            </if>
         </where>
     </select>
 
@@ -276,6 +282,12 @@
             <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
                 and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
             </if>
+            <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
+                and exists(SELECT  1 from t_CalculateInfor g where g.tradeId = transactionId and
+                g.calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
+                )
+
+            </if>
         </where>
     </select>
 

+ 5 - 4
src/main/resources/mapper/waybill/NoCarWaybillMapper.xml

@@ -50,7 +50,7 @@
         companyAdress,
         companyBank,
         companyBankAcc,
-        companyTel,companyNum,updateTime
+        companyTel,companyNum,updateTime,failReason
     </sql>
     <select id="selectAllByPage" resultMap="BaseResultMap">
         select
@@ -132,7 +132,7 @@
             companyAdress,
             companyBank,
             companyBankAcc,
-            companyTel,companyNum,updateTime,batchNumber,batchNumEnd
+            companyTel,companyNum,updateTime,batchNumber,batchNumEnd,failReason
         )
         values ( #{customerName,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR},
         #{billNum,jdbcType=VARCHAR}, #{plateNum,jdbcType=VARCHAR}, #{plateColor,jdbcType=VARCHAR},
@@ -140,7 +140,7 @@
         #{predictEndTime,jdbcType=VARCHAR}, #{fee,jdbcType=INTEGER}, #{titleType,jdbcType=INTEGER},
         #{taxplayerCode,jdbcType=VARCHAR},#{intfaceStartTime,jdbcType=VARCHAR},#{interfaceEndTime,jdbcType=VARCHAR},
         #{billwayStatus,jdbcType=INTEGER},#{hisFlag,jdbcType=INTEGER}, #{companyAdress,jdbcType=VARCHAR}, #{companyBank,jdbcType=VARCHAR}
-        , #{companyBankAcc,jdbcType=VARCHAR}, #{companyTel,jdbcType=VARCHAR},#{companyNum,jdbcType=VARCHAR},#{updateTime,jdbcType=VARCHAR},#{batchNum,jdbcType=VARCHAR},#{batchNumEnd,jdbcType=VARCHAR}
+        , #{companyBankAcc,jdbcType=VARCHAR}, #{companyTel,jdbcType=VARCHAR},#{companyNum,jdbcType=VARCHAR},#{updateTime,jdbcType=VARCHAR},#{batchNum,jdbcType=VARCHAR},#{batchNumEnd,jdbcType=VARCHAR},#{failReason,jdbcType=VARCHAR}
         )
     </insert>
     <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
@@ -191,7 +191,8 @@
         companyBank = #{companyBank,jdbcType=VARCHAR},
         companyBankAcc = #{companyBankAcc,jdbcType=VARCHAR},
         companyTel = #{companyTel,jdbcType=VARCHAR},
-        companyNum = #{companyNum,jdbcType=VARCHAR}
+        companyNum = #{companyNum,jdbcType=VARCHAR},
+        failReason = #{failReason,jdbcType=VARCHAR}
         where billNum = #{billNum,jdbcType=VARCHAR}
     </update>
     <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >