package com.panzhihua.common.model.vos.partybuilding;
|
|
import java.io.Serializable;
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import lombok.Data;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 批量党员
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-11-30 14:57
|
**/
|
@Data
|
public class PartyBuildingMemberExcelVO implements Serializable {
|
/**
|
* 党员姓名
|
*/
|
@ExcelProperty(value = "党员姓名", index = 0)
|
private String name;
|
/**
|
* 所属党组织
|
*/
|
@ExcelProperty(value = "所属党组织", index = 2)
|
private String orgName;
|
|
@ExcelProperty(value = "联系电话",index = 1)
|
private String phone;
|
|
@ExcelIgnore
|
private Long communityId;
|
}
|