package com.panzhihua.sangeshenbian.model.excel;
|
|
import cn.idev.excel.annotation.ExcelProperty;
|
import com.panzhihua.sangeshenbian.annotation.FastExcel;
|
import com.panzhihua.sangeshenbian.conveter.EConverter;
|
import com.panzhihua.sangeshenbian.enums.FreezeStatusEnum;
|
import com.panzhihua.sangeshenbian.enums.GenderEnum;
|
import lombok.Data;
|
|
/**
|
* @author mitao
|
* @date 2025/3/14
|
*/
|
@Data
|
public class PartyMemberExcel {
|
|
@ExcelProperty(value = {"姓名"}, index = 0)
|
private String name;
|
|
@ExcelProperty(value = {"性别"}, index = 1,converter = EConverter.class)
|
@FastExcel(type = GenderEnum.class)
|
private Integer gender;
|
|
@ExcelProperty(value = {"所在社区"}, index = 2)
|
private String community;
|
|
@ExcelProperty(value = {"服务对象"}, index = 3)
|
private String serviceTarget;
|
|
@ExcelProperty(value = {"所在党组织"}, index = 4)
|
private String partyOrganization;
|
|
@ExcelProperty(value = {"审核状态"}, index = 5,converter = EConverter.class)
|
@FastExcel(type = FreezeStatusEnum.class)
|
private Integer freezeStatus;
|
|
}
|