ArtistRealAuth.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package com.artist.domain.po;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.io.Serializable;
  7. import java.time.LocalDateTime;
  8. /**
  9. * <p>
  10. * 艺人实名认证信息表
  11. * </p>
  12. *
  13. * @author xiang
  14. * @since 2025-11-18
  15. */
  16. @TableName("artist_real_auth")
  17. @Data
  18. public class ArtistRealAuth implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Integer id;
  22. /**
  23. * 关联艺人ID(对应artist表id)
  24. */
  25. private Integer artistId;
  26. /**
  27. * 真实姓名
  28. */
  29. private String realName;
  30. /**
  31. * 绑定手机号
  32. */
  33. private String phone;
  34. /**
  35. * 邮箱
  36. */
  37. private String email;
  38. /**
  39. * 国籍/地区
  40. */
  41. private String nationality;
  42. /**
  43. * 证件号(建议加密存储)
  44. */
  45. private String idCard;
  46. /**
  47. * 面部识别状态:0-未认证,1-已认证
  48. */
  49. private Integer faceAuthStatus;
  50. /**
  51. * 实名认证状态:0-待审核,1-已通过,2-已驳回
  52. */
  53. private Integer authStatus;
  54. /**
  55. * 实名认证通过时间
  56. */
  57. private LocalDateTime authTime;
  58. /**
  59. * 证件号(建议加密存储)
  60. */
  61. private String authResult;
  62. private LocalDateTime createTime;
  63. }