Commit ea600213 authored by hanfeng's avatar hanfeng

修改车辆信息下载

parent 264f819e
...@@ -93,13 +93,13 @@ public class ResultVehicleVo { ...@@ -93,13 +93,13 @@ public class ResultVehicleVo {
private String vin; private String vin;
/** /**
* 险公司,见常量表 * 商业险公司,见常量表
*/ */
private Integer insuranceCompany; private Integer insuranceCompany;
/** /**
* 险单号 * 商业险单号
*/ */
private String insuranceNo; private String insuranceNo;
...@@ -109,10 +109,24 @@ public class ResultVehicleVo { ...@@ -109,10 +109,24 @@ public class ResultVehicleVo {
private Date insuranceStartDate; private Date insuranceStartDate;
/** /**
* 保险结束时间 * 商业险到期时间
*/ */
private Date insuranceEndDate; private Date insuranceEndDate;
/**
* 交强险公司
*/
private String strongInsuranceCompany;
/**
* 交强险到期时间
*/
private Date strongInsuranceEndDate;
/**
* 交强险单号
*/
private String strongInsuranceNo;
/** /**
* 年审时间 * 年审时间
*/ */
......
...@@ -5,6 +5,7 @@ import lombok.Builder; ...@@ -5,6 +5,7 @@ import lombok.Builder;
import lombok.Data; import lombok.Data;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
import java.util.Date;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
...@@ -65,6 +66,48 @@ public class VehicleExcelVo { ...@@ -65,6 +66,48 @@ public class VehicleExcelVo {
private String belongToName; private String belongToName;
/**
* 车架号
*/
private String vin;
/**
* 发动机号
*/
private String engineNum;
/**
* 商业险公司,见常量表
*/
private Integer insuranceCompany;
/**
* 商业险单号
*/
private String insuranceNo;
/**
* 商业险到期时间
*/
private Date insuranceEndDate;
/**
* 交强险公司
*/
private String strongInsuranceCompany;
/**
* 交强险到期时间
*/
private Date strongInsuranceEndDate;
/**
* 交强险单号
*/
private String strongInsuranceNo;
public String getStatus() { public String getStatus() {
return map.get(status); return map.get(status);
} }
......
...@@ -191,8 +191,6 @@ ...@@ -191,8 +191,6 @@
ELSE v.status END) status , ELSE v.status END) status ,
v.number_plate, v.number_plate,
v.brand, v.brand,
-- IFNULL(v.park_branch_company_id,v.expect_destination_branch_company_id) AS subordinate_branch,
-- IFNULL(bc.name,bc1.name) AS subBranchName,
v.park_branch_company_id, v.park_branch_company_id,
bc.name as parkBranchCompanyName, bc.name as parkBranchCompanyName,
v.expect_destination_branch_company_id, v.expect_destination_branch_company_id,
...@@ -207,6 +205,9 @@ ...@@ -207,6 +205,9 @@
v.insurance_no, v.insurance_no,
v.insurance_start_date, v.insurance_start_date,
v.insurance_end_date, v.insurance_end_date,
v.strong_insurance_company,
v.strong_insurance_no,
v.strong_insurance_end_date,
v.annual_verification_date, v.annual_verification_date,
v.maintenance_date, v.maintenance_date,
v.maintenance_mileage, v.maintenance_mileage,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment