package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
/**
|
* @author lyq
|
* @date 2021-09-18 15:07:12
|
* @deprecated 养老认证历史记录表实体类
|
*/
|
|
@Data
|
@TableName("com_pension_auth_history_record")
|
public class ComPensionAuthHistoryRecordDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 老人用户id
|
*/
|
private Long userId;
|
|
/**
|
* 名称
|
*/
|
private String name;
|
|
/**
|
* 身份证号码
|
*/
|
private String idCard;
|
|
/**
|
* 出生年月
|
*/
|
private String brithday;
|
|
/**
|
* 年龄
|
*/
|
private Integer age;
|
|
/**
|
* 户籍地
|
*/
|
private String domicile;
|
|
/**
|
* 本月是否已认证(1.是 2.否)
|
*/
|
private Integer isAuth;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
/**
|
* 养老人口id
|
*/
|
private Long elderliesId;
|
|
/**
|
* 认证期数
|
*/
|
private String authPeriod;
|
|
/**
|
* 提交用户id
|
*/
|
private Long submitUserId;
|
|
/**
|
* 认证方式(1.视频认证 2.人脸认证 3.线下认证)
|
*/
|
private Integer authMethod;
|
|
/**
|
* 人脸核验结果数据
|
*/
|
private String verificationResult;
|
|
/**
|
* 标记
|
*/
|
private String mark;
|
|
/**
|
* 是否健在(1.是 0.否)
|
*/
|
private Integer isAlive;
|
|
/**
|
* 性别(1.男 2.女 3.其他)
|
*/
|
private Integer sex;
|
|
/**
|
* 认证成功记录id
|
*/
|
private Long authId;
|
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
|
/**
|
* 认证时间
|
*/
|
private Date authDate;
|
|
/**
|
* 审核时间
|
*/
|
private Date approvalDate;
|
|
/**
|
* 审核人员id
|
*/
|
private Long approverId;
|
|
/**
|
* 本期是否已认证(1.是 2.否)
|
*/
|
public interface isAuth{
|
int yes = 1;
|
int no = 2;
|
}
|
|
@Override
|
public String toString() {
|
return "ComPensionAuthHistoryRecordDO{" +
|
"id=" + id +
|
", userId=" + userId +
|
", name=" + name +
|
", idCard=" + idCard +
|
", brithday=" + brithday +
|
", age=" + age +
|
", domicile=" + domicile +
|
", isAuth=" + isAuth +
|
", createAt=" + createAt +
|
", communityId=" + communityId +
|
", elderliesId=" + elderliesId +
|
", authPeriod=" + authPeriod +
|
", submitUserId=" + submitUserId +
|
", authMethod=" + authMethod +
|
", verificationResult=" + verificationResult +
|
", mark=" + mark +
|
", isAlive=" + isAlive +
|
", sex=" + sex +
|
", authId=" + authId +
|
", phone=" + phone +
|
", authDate=" + authDate +
|
", approvalDate=" + approvalDate +
|
", approverId=" + approverId +
|
"}";
|
}
|
}
|