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