Browse Source

后端代码提交

mashengyi 3 years ago
parent
commit
6179d25ae2

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

@@ -188,7 +188,7 @@ public class NoCarController {
         try {
             ImportParams params = new ImportParams();
             params.setTitleRows(1);
-            params.setHeadRows(1);
+            params.setHeadRows(2);
             params.setKeyIndex(1);
             List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
             RespR respR = noCarBillWayService.batchBillWayStart(list);

+ 11 - 0
src/main/java/com/jkcredit/invoice/model/entity/waybill/NoCarWayBill.java

@@ -1,5 +1,7 @@
 package com.jkcredit.invoice.model.entity.waybill;
 
+import cn.afterturn.easypoi.excel.annotation.Excel;
+
 /**
  * 无车实体类
  */
@@ -20,41 +22,49 @@ public class NoCarWayBill {
     /**
      * 运单编号
      */
+    @Excel(name = "运单编号")
     private String billNum;
 
     /**
      * 车牌号
      */
+    @Excel(name = "车牌号码")
     private String plateNum;
 
     /**
      * 车辆颜色
      */
+    @Excel(name = "车牌颜色")
     private String plateColor;
 
     /**
      * 运单开始时间
      */
+    @Excel(name = "运单开始时间",format="yyyy-MM-dd HH:mm:ss",databaseFormat = "yyyy-MM-dd HH:mm:ss")
     private String startTime;
 
     /**
      * 运单开始地址
      */
+    @Excel(name = "运单开始地址")
     private String sourceAddr;
 
     /**
      * 运单目的地址
      */
+    @Excel(name = "运单目的地址")
     private String destAddr;
 
     /**
      * 运单预计完成时间
      */
+    @Excel(name = "运单预计完成时间",format="yyyy-MM-dd HH:mm:ss",databaseFormat = "yyyy-MM-dd HH:mm:ss")
     private String predictEndTime;
 
     /**
      * 运单费用 分
      */
+    @Excel(name = "运单费用")
     private Long fee;
 
     /**
@@ -65,6 +75,7 @@ public class NoCarWayBill {
     /**
      * 税号
      */
+    @Excel(name = "税号")
     private String taxplayerCode;
 
     /**