|
|
|
@ -6,10 +6,8 @@ import com.alibaba.excel.annotation.write.style.HeadStyle; |
|
|
|
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import lombok.Data; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -25,31 +23,25 @@ public class IcPsTripReportRecordExportExcel implements Serializable { |
|
|
|
* 姓名 |
|
|
|
*/ |
|
|
|
@ColumnWidth(12) |
|
|
|
@ExcelProperty(value = "姓名", order = 1) |
|
|
|
@ExcelProperty(value = "姓名") |
|
|
|
private String name; |
|
|
|
/** |
|
|
|
* 年龄【磐石】 |
|
|
|
*/ |
|
|
|
@ColumnWidth(10) |
|
|
|
@ExcelProperty(value = "年龄",order = 2) |
|
|
|
private int age; |
|
|
|
/** |
|
|
|
* 证件号 |
|
|
|
*/ |
|
|
|
@ColumnWidth(20) |
|
|
|
@ExcelProperty(value = "证件号",order = 3) |
|
|
|
@ExcelProperty(value = "证件号") |
|
|
|
private String idCard; |
|
|
|
/** |
|
|
|
* 户籍地 【磐石】 |
|
|
|
*/ |
|
|
|
@ColumnWidth(28) |
|
|
|
@ExcelProperty(value = "户籍地(省市县区)",order = 4) |
|
|
|
@ExcelProperty(value = "户籍地(省市县区)") |
|
|
|
private String registeredResidence; |
|
|
|
/** |
|
|
|
* 手机号 |
|
|
|
*/ |
|
|
|
@ColumnWidth(15) |
|
|
|
@ExcelProperty(value = "手机号",order = 5) |
|
|
|
@ExcelProperty(value = "手机号") |
|
|
|
private String mobile; |
|
|
|
/** |
|
|
|
* 来自地区(格式:省-市-区-街道-社区) |
|
|
|
|