package com.panzhihua.common.model.vos.community.cluster.admin;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @description: 批量导入群团组织成员
|
* @author : lyq
|
*/
|
@Data
|
public class ComClusterMemberExcelVO implements Serializable {
|
|
@ExcelProperty(value = "姓名", index = 0)
|
private String name;
|
|
@ExcelProperty(value = "组织名称", index = 1)
|
private String clusterName;
|
|
@ExcelProperty(value = "职务", index = 2)
|
private String job;
|
|
@ExcelProperty(value = "联系电话", index = 3)
|
private String phone;
|
|
@ExcelProperty(value = "民族", index = 4)
|
private String nation;
|
|
@ExcelProperty(value = "住址", index = 5)
|
private String address;
|
|
@ExcelProperty(value = "身份证号码", index = 6)
|
private String idCard;
|
}
|