3 changed files with 98 additions and 78 deletions
@ -1,111 +1,84 @@ |
|||
package com.epmet.modules.partymember.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import com.alibaba.excel.annotation.write.style.HeadStyle; |
|||
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 数字平台党员信息表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2022-05-17 |
|||
*/ |
|||
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 44) |
|||
@Data |
|||
public class IcPartyMemberExcel { |
|||
|
|||
@Excel(name = "唯一标识") |
|||
private String id; |
|||
|
|||
@Excel(name = "客户Id customer.id") |
|||
private String customerId; |
|||
|
|||
@Excel(name = "党组织的所有上级ID,没有上级时为0") |
|||
private String orgPids; |
|||
|
|||
@Excel(name = "行政组织 机关ID") |
|||
private String agencyId; |
|||
|
|||
@Excel(name = "行政组织 机关ID") |
|||
private String agencyPids; |
|||
|
|||
@Excel(name = "对应的ic_resi_user主表Id") |
|||
private String icResiUser; |
|||
@ColumnWidth(10) |
|||
@ExcelProperty(value = "序号",order = 1) |
|||
private Integer index; |
|||
|
|||
@Excel(name = "姓名") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "姓名",order = 2) |
|||
private String name; |
|||
|
|||
@Excel(name = "手机号") |
|||
private String mobile; |
|||
|
|||
@Excel(name = "身份证号") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "身份证号",order = 3) |
|||
private String idCard; |
|||
|
|||
@Excel(name = "地址") |
|||
private String address; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "手机号",order = 4) |
|||
private String mobile; |
|||
|
|||
@Excel(name = "入党时间") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "入党时间",order = 5) |
|||
private String rdsj; |
|||
|
|||
@Excel(name = "所属支部") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "所属党组织",order = 6) |
|||
private String sszb; |
|||
|
|||
@Excel(name = "是否流动党员") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "流动党员",order = 7) |
|||
private String isLd; |
|||
|
|||
@Excel(name = "流动党员活动证号") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "流动党员证号",order = 8) |
|||
private String ldzh; |
|||
|
|||
@Excel(name = "职务") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "职务",order = 9) |
|||
private String partyZw; |
|||
|
|||
@Excel(name = "是否退休") |
|||
private String isTx; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "地址",order = 10) |
|||
private String address; |
|||
|
|||
@Excel(name = "是否党员中心户") |
|||
private String isDyzxh; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "是否缴费",order = 11) |
|||
private String isPay; |
|||
|
|||
@Excel(name = "是否免学习0否,1是") |
|||
private String isMxx; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "最近一次缴纳党费时间",order = 12) |
|||
private String payDate; |
|||
|
|||
@Excel(name = "文化程度【字典表】") |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "文化程度",order = 13) |
|||
private String culture; |
|||
|
|||
@Excel(name = "备注") |
|||
private String remark; |
|||
|
|||
@Excel(name = "预留字段1") |
|||
private String field1; |
|||
|
|||
@Excel(name = "预留字段2") |
|||
private String field2; |
|||
|
|||
@Excel(name = "预留字段3") |
|||
private String field3; |
|||
|
|||
@Excel(name = "预留字段4") |
|||
private String field4; |
|||
|
|||
@Excel(name = "预留字段5") |
|||
private String field5; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "量化积分",order = 14) |
|||
private String point; |
|||
|
|||
@Excel(name = "删除标识 0.未删除 1.已删除") |
|||
private Integer delFlag; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "志愿者类别",order = 15) |
|||
private String volunteerCategory; |
|||
|
|||
@Excel(name = "乐观锁") |
|||
private Integer revision; |
|||
|
|||
@Excel(name = "创建人") |
|||
private String createdBy; |
|||
|
|||
@Excel(name = "创建时间") |
|||
private Date createdTime; |
|||
|
|||
@Excel(name = "更新人") |
|||
private String updatedBy; |
|||
|
|||
@Excel(name = "更新时间") |
|||
private Date updatedTime; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "备注",order = 16) |
|||
private String remark; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue