lidongdong
2023-07-28 c2df03ce2b678321347daa1c9499c7a40337a672
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.panzhihua.common.model.vos.partybuilding;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @description: 党员信息导出
 * @author: lyq
 * @date: 2021/5/6 17:48
 */
@Data
public class ManagementRegisteredExcelVO {
 
    @ExcelProperty(value = "党员姓名",index = 0)
    private String name;
    @ExcelProperty(value = "单位归属",index = 1)
    private String belongTo;
    @ExcelProperty(value = "手机号",index = 2)
    private String phone;
    @ExcelProperty(value = "微信昵称",index = 4)
    private String nickName;
    @ExcelProperty(value = "常住社区",index = 3)
    private String communityName;
    @ExcelProperty(value = "小区院落",index = 5)
    private String villageName;
    @ExcelProperty(value = "职能特长及服务意愿",index = 6)
    private String specialtyName;
 
    @ExcelProperty(value = "工作单位",index = 7)
    private String checkUnitName;
 
}