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: ComPensionAuthRecordExcleVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 养老认证记录
|
* @author: txb
|
* @date: 2021/09/07 16:16
|
*/
|
@Data
|
@ApiModel("养老认证记录")
|
@EncryptDecryptClass
|
public class ComPensionAuthRecordExcleVO {
|
|
@ExcelProperty(value = "提交用户", index = 0)
|
private String submitUserName;
|
|
@ExcelProperty(value = "联系电话", index = 1)
|
private String phone;
|
|
@ExcelProperty(value = "认证姓名", index = 2)
|
private String name;
|
|
@ExcelProperty(value = "认证身份证号", index = 3)
|
@EncryptDecryptField
|
private String idCard;
|
|
@ExcelProperty(value = "现居住地址", index = 4)
|
private String address;
|
|
@ExcelProperty(value = "健在", index = 5)
|
private String isAlive;
|
|
@ExcelProperty(value = "认证期数", index = 6)
|
private String authPeriod;
|
|
@ExcelProperty(value = "认证时间", index = 7)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date authDate;
|
|
@ExcelProperty(value = "认证方式", index = 8)
|
private String authMethod;
|
|
@ExcelProperty(value = "标记", index = 9)
|
private String mark;
|
|
@ExcelProperty(value = "审核状态", index = 10)
|
private String approvalStatus;
|
}
|