ChatgptUserConversation.java 844 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_user_conversation")
  12. @SearchBean(tables = "chatgpt_user_conversation")
  13. public class ChatgptUserConversation extends BaseEntity {
  14. /**
  15. * 凭证
  16. */
  17. @TableField("userToken")
  18. private String userToken;
  19. /**
  20. * 会话id
  21. */
  22. @TableField("conversationId")
  23. private String conversationId;
  24. /**
  25. * gpt账号id
  26. */
  27. @TableField("chatgptaccountid")
  28. private String chatgptaccountid;
  29. /**
  30. * 会话标题
  31. */
  32. private String title;
  33. /**
  34. * 消息id
  35. */
  36. private String messageId;
  37. }