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
package com.panzhihua.common.model.vos.community;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @title: ComPensionAuthRecordImportMistakeExcelVO
 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
 * @description: 养老线下认证导入错误记录
 * @author: txb
 * @date: 2021/09/08 09:16
 */
@Data
@EncryptDecryptClass
public class ComPensionAuthRecordImportMistakeExcelVO implements Serializable {
 
    @ExcelProperty(value = "认证姓名", index = 0)
    private String name;
 
    @ExcelProperty(value = "认证身份证号码", index = 1)
    @EncryptDecryptField
    private String idCard;
 
    @ExcelProperty(value = "联系电话", index = 2)
    private String phone;
 
    @ExcelProperty(value = "现居住地址", index = 3)
    private String nowAddress;
 
    @ExcelProperty(value = "认证时间", index = 4)
    private String authDate;
 
    @ExcelProperty(value = "健在(是/否)", index = 5)
    private String isAlive;
 
    @ExcelProperty(value = "错误信息", index = 6)
    private String mistake;
}