| | |
| | | package com.panzhihua.common.model.vos.partybuilding; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @description: 党员信息导出 |
| | |
| | | @Data |
| | | public class ComEldersAuthHistoryExcelVO { |
| | | |
| | | @ExcelProperty(value = "姓名" ,index = 0) |
| | | @ExcelProperty(value = "姓名", index = 0) |
| | | private String name; |
| | | |
| | | @ExcelProperty(value = "身份证号" ,index = 1) |
| | | @ExcelProperty(value = "身份证号", index = 1) |
| | | private String idCard; |
| | | |
| | | @ExcelProperty(value = "出生年月" ,index = 2) |
| | | @ExcelProperty(value = "出生年月", index = 2) |
| | | private String brithday; |
| | | |
| | | @ExcelProperty(value = "年龄" ,index = 3) |
| | | @ExcelProperty(value = "年龄", index = 3) |
| | | private Date age; |
| | | |
| | | @ExcelProperty(value = "户籍地" ,index = 4) |
| | | @ExcelProperty(value = "户籍地", index = 4) |
| | | private Date domicile; |
| | | |
| | | } |