| | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | 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; |
| | | |
| | |
| | | *提交用户id |
| | | */ |
| | | private Long submitUserId; |
| | | |
| | | /** |
| | | * 认证方式(1.视频认证 2.人脸认证 3.线下认证) |
| | | */ |
| | | private Integer authMethod; |
| | | |
| | | /** |
| | | *认证期数 |
| | | */ |
| | | private String authPeriod; |
| | | |
| | | /** |
| | | * 人脸核验结果数据 |
| | | */ |
| | | private String verificationResult; |
| | | |
| | | /** |
| | | * 认证视频 |
| | | */ |
| | | private String authVideo; |
| | | /** |
| | | *审核人员 |
| | | * 现居地址 |
| | | */ |
| | | private String address; |
| | | |
| | | /** |
| | | *审核人员id |
| | | */ |
| | | private Long approverId; |
| | | /** |
| | |
| | | */ |
| | | @TableField(fill = FieldFill.UPDATE) |
| | | private Date updateAt; |
| | | |
| | | /** |
| | | *审核状态(1.待审核 2.驳回 3.通过) |
| | | */ |
| | | public interface approvalStatus{ |
| | | int dsh = 1; |
| | | int bh = 2; |
| | | int tg = 3; |
| | | } |
| | | |
| | | /** |
| | | *认证状态(1.已认证 0.未认证) |
| | | */ |
| | | public interface authStatus{ |
| | | int rez = 1; |
| | | int wrz = 0; |
| | | } |
| | | |
| | | /** |
| | | * 认证方式(1.视频认证 2.人脸认证 3.线下认证) |
| | | */ |
| | | public interface authMethod{ |
| | | int sprz = 1; |
| | | int rlrz = 2; |
| | | int xxrz = 3; |
| | | } |
| | | } |