| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package com.artist.domain.po;
- 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.time.LocalDateTime;
- /**
- * <p>
- * 艺人实名认证信息表
- * </p>
- *
- * @author xiang
- * @since 2025-11-18
- */
- @TableName("artist_real_auth")
- @Data
- public class ArtistRealAuth implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 关联艺人ID(对应artist表id)
- */
- private Integer artistId;
- /**
- * 真实姓名
- */
- private String realName;
- /**
- * 绑定手机号
- */
- private String phone;
- /**
- * 邮箱
- */
- private String email;
- /**
- * 国籍/地区
- */
- private String nationality;
- /**
- * 证件号(建议加密存储)
- */
- private String idCard;
- /**
- * 面部识别状态:0-未认证,1-已认证
- */
- private Integer faceAuthStatus;
- /**
- * 实名认证状态:0-待审核,1-已通过,2-已驳回
- */
- private Integer authStatus;
- /**
- * 实名认证通过时间
- */
- private LocalDateTime authTime;
- /**
- * 证件号(建议加密存储)
- */
- private String authResult;
- private LocalDateTime createTime;
- }
|