package com.panzhihua.common.model.vos.partybuilding;
|
|
import java.util.Date;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
/**
|
* @description: 党员信息导出
|
* @author: lyq
|
* @date: 2021/5/6 17:48
|
*/
|
@Data
|
public class ComPbMemberExcelVO {
|
|
@ExcelProperty(value = "联系电话", index = 1)
|
private String phone;
|
|
@ExcelProperty(value = "党员姓名", index = 0)
|
private String name;
|
|
@ExcelProperty(value = "所属党组织", index = 4)
|
private String orgName;
|
|
@ExcelProperty(value = "技能特长", index = 2)
|
private String specialtyName;
|
|
@ExcelProperty(value = "报道单位", index = 3)
|
private String checkUnitName;
|
|
}
|