Pu Zhibing
2025-03-16 00ef2e4c4c6a85af857be272cf74a7e43e6517f0
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
33
34
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 PartyMemberTemplate {
    @ExcelProperty(value = {"说明:所在社区请按照规定格式填写:区县-街道-社区","姓名"})
    private String name;
 
    @ExcelProperty(value = {"说明:所在社区请按照规定格式填写:区县-街道-社区","联系电话"})
    private String phone;
 
    @ExcelProperty(value = {"说明:所在社区请按照规定格式填写:区县-街道-社区","身份证号"})
    private String idNumber;
 
    @ExcelProperty(value = {"说明:所在社区请按照规定格式填写:区县-街道-社区","所在社区"})
    private String community;
 
    @ExcelProperty(value = {"说明:所在社区请按照规定格式填写:区县-街道-社区","服务对象"})
    private String serviceTarget;
 
    @ExcelProperty(value = {"说明:所在社区请按照规定格式填写:区县-街道-社区","所在党组织"})
    private String partyOrganization;
 
}