From eda58e0e6d4abdd2b060e28867d103045845aa69 Mon Sep 17 00:00:00 2001 From: 罗元桥 <2376770955@qq.com> Date: 星期一, 30 八月 2021 13:13:18 +0800 Subject: [PATCH] Merge branch 'test' into 'yuyue_dev' --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngCarExcelVO.java | 23 ++++++++++------------- 1 files changed, 10 insertions(+), 13 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngCarExcelVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngCarExcelVO.java index 75f6565..03cfdc2 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngCarExcelVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngCarExcelVO.java @@ -1,14 +1,12 @@ package com.panzhihua.common.model.vos.community; +import java.io.Serializable; + import com.alibaba.excel.annotation.ExcelProperty; -import com.fasterxml.jackson.annotation.JsonFormat; import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import java.io.Serializable; -import java.util.Date; +import lombok.Data; /** * @description: 批量导入车辆管理 @@ -21,44 +19,43 @@ /** * 小区名称 */ - @ExcelProperty(value = "小区名称" ,index = 0) + @ExcelProperty(value = "小区名称", index = 0) private String areaName; /** * 车主姓名 */ - @ExcelProperty(value = "车主姓名" ,index = 1) + @ExcelProperty(value = "车主姓名", index = 1) private String userName; /** * 车主身份证号码 */ @EncryptDecryptField - @ExcelProperty(value = "车主身份证号码" ,index = 2) + @ExcelProperty(value = "车主身份证号码", index = 2) private String cardNo; /** * 品牌型号 */ - @ExcelProperty(value = "品牌型号" ,index = 3) + @ExcelProperty(value = "品牌型号", index = 3) private String brand; /** * 车牌号 */ - @ExcelProperty(value = "车牌号" ,index = 4) + @ExcelProperty(value = "车牌号", index = 4) private String plateNum; /** * 车身颜色 */ - @ExcelProperty(value = "颜色" ,index = 5) + @ExcelProperty(value = "颜色", index = 5) private String color; /** * 联系方式 */ - @ExcelProperty(value = "联系方式" ,index = 6) + @ExcelProperty(value = "联系方式", index = 6) private String mobile; } - -- Gitblit v1.7.1