ChatgptSession.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. /**
  23. * 状态 1有效 1无效
  24. */
  25. private Integer status;
  26. /**
  27. * 是否为plus会员
  28. */
  29. @TableField("isPlus")
  30. private Integer isPlus;
  31. /**
  32. * accountId
  33. */
  34. @TableField("accountId")
  35. private Long accountId;
  36. @TableField("isCar")
  37. private Boolean isCar;
  38. /**
  39. * 车id
  40. */
  41. @TableField("carID")
  42. private String carId;
  43. /**
  44. * 车名称
  45. */
  46. private String carName;
  47. /**
  48. * 官方session
  49. */
  50. @TableField("officialSession")
  51. private String officialSession;
  52. /**
  53. * 备注
  54. */
  55. private String remark;
  56. }