mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.panzhihua.common.model.vos.community;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @title: ComElderAuthRecordStatisticExcleVO
 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
 * @description: 高龄认证记录统计
 * @author: hans
 * @date: 2021/09/01 16:16
 */
@Data
@ApiModel("高龄认证记录统计")
@EncryptDecryptClass
public class ComElderAuthRecordStatisticExcleVO {
 
    @ExcelProperty(value = "联系电话", index = 0)
    private String phone;
 
    @ExcelProperty(value = "认证姓名", index = 1)
    private String name;
 
    @ExcelProperty(value = "身份证号", index = 2)
    @EncryptDecryptField
    private String idCard;
 
    @ExcelProperty(value = "性别", index = 3)
    private String sex;
 
    @ExcelProperty(value = "年龄", index = 4)
    private Integer age;
 
    @ExcelProperty(value = "出生日期", index = 6)
    private String birthday;
 
    @ExcelProperty(value = "人员类别", index = 5)
    private String personnelCategory;
 
    @ExcelProperty(value = "现居住地址", index = 7)
    private String address;
 
    @ExcelProperty(value = "健在", index = 8)
    private String isAlive;
 
    @ExcelProperty(value = "认证期数", index = 9)
    private String authPeriod;
 
    @ExcelProperty(value = "认证时间", index = 10)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private Date authDate;
 
    @ExcelProperty(value = "认证方式", index = 11)
    private String authMethod;
 
 
    @ExcelProperty(value = "标记", index = 12)
    private String mark;
 
    @ExcelProperty(value = "认证状态", index = 13)
    private String authStatus;
}