package com.panzhihua.service_community.model.dos; import java.io.Serializable; import java.util.Date; import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; /** * title: ComElderAuthRecordsDO 社区政务》高龄老人认证》认证记录表实体类 * projectName 成都呐喊信息技术有限公司-智慧社区项目 * description: 社区政务》高龄老人认证》认证记录表实体类 * * @author txb * @date 2021/9/01 14:12 */ @Data @TableName("com_elder_auth_records") public class ComElderAuthRecordsDO implements Serializable { private static final long serialVersionUID = 1L; /** * 主键id */ @TableId(type = IdType.ASSIGN_ID) private Long id; /** * 高龄人口id */ private Long elderliesId; /** * 认证期数 */ private String authPeriod; /** * 提交用户id */ private Long submitUserId; /** * 认证方式(1.视频认证 2.人脸认证 3.线下认证) */ private Integer authMethod; /** * 人脸核验结果数据 */ private String verificationResult; /** * 认证视频 */ private String authVideo; /** * 现居地址 */ private String address; /** * 审核人员 */ private Long approverId; /** * 审核状态(1.待审核 2.驳回 3.通过) */ private Integer approvalStatus; /** * 审核时间 */ private Date approvalDate; /** * 标记 */ private String mark; /** * 驳回原因 */ private String rejectReason; /** * 认证状态(1.已认证 0.未认证) */ private Integer authStatus; /** * 认证时间 */ private Date authDate; /** * 创建时间 */ @TableField(fill = FieldFill.INSERT) private Date createAt; /** * 更新时间 */ @TableField(fill = FieldFill.UPDATE) private Date updateAt; /** * 社区id */ private Long communityId; /** * 审核状态(1.待审核 2.驳回 3.通过) */ public interface approvalStatus{ int dsh = 1; int bh = 2; int tg = 3; } /** * 认证状态(1.已认证 0.未认证) */ public interface authStatus{ int yrz = 1; int wrz = 0; } /** * 认证方式(1.视频认证 2.人脸认证 3.线下认证) */ public interface authMethod{ int sprz = 1; int rlrz = 2; int xxrz = 3; } @Override public String toString() { return "ComElderAuthRecordsDO{" + "id=" + id + ", elderliesId=" + elderliesId + ", authPeriod=" + authPeriod + ", submitUserId=" + submitUserId + ", authVideo=" + authVideo + ", address=" + address + ", approverId=" + approverId + ", approvalStatus=" + approvalStatus + ", approvalDate=" + approvalDate + ", mark=" + mark + ", rejectReason=" + rejectReason + ", authStatus=" + authStatus + ", authDate=" + authDate + ", createAt=" + createAt + ", updateAt=" + updateAt + "}"; } }