ChatgptSession.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package com.cyksj.model.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.ejlchina.searcher.bean.SearchBean;
  5. import lombok.Data;
  6. /**
  7. * @author chan
  8. * @date 2024/3/18 17:10
  9. */
  10. @Data
  11. @TableName("chatgpt_session")
  12. @SearchBean(tables = "chatgpt_session")
  13. public class ChatgptSession extends BaseEntity {
  14. /**
  15. * 邮箱
  16. */
  17. private String email;
  18. /**
  19. * 密码
  20. */
  21. private String password;
  22. private String emailPassword;
  23. /**
  24. * 状态 1有效 1无效
  25. */
  26. private Integer status;
  27. /**
  28. * 是否为plus会员
  29. */
  30. @TableField("isPlus")
  31. private Integer isPlus;
  32. /**
  33. * accountId
  34. */
  35. @TableField("accountId")
  36. private Long accountId;
  37. @TableField("isCar")
  38. private Boolean isCar;
  39. /**
  40. * 车id
  41. */
  42. @TableField("carID")
  43. private String carId;
  44. /**
  45. * 车名称
  46. */
  47. private String carName;
  48. /**
  49. * 官方session
  50. */
  51. @TableField("officialSession")
  52. private String officialSession;
  53. /**
  54. * 双重验证密钥
  55. */
  56. private String apiSecret;
  57. /**
  58. * 备用安全码
  59. */
  60. private String verifyCodes;
  61. /**
  62. * 备注
  63. */
  64. private String remark;
  65. /**
  66. * 分数
  67. */
  68. private Double score;
  69. /**
  70. * 关联邮箱
  71. */
  72. private String relateEmail;
  73. /**
  74. * 账号信息
  75. */
  76. private String accountInfo;
  77. /**
  78. * 会员类型
  79. * 普通、Plus、Team、Pro
  80. */
  81. private String type;
  82. }