| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Data;
- /**
- * @author chan
- * @date 2024/3/18 17:10
- */
- @Data
- @TableName("chatgpt_user_conversation")
- @SearchBean(tables = "chatgpt_user_conversation")
- public class ChatgptUserConversation extends BaseEntity {
- /**
- * 凭证
- */
- @TableField("userToken")
- private String userToken;
- /**
- * 会话id
- */
- @TableField("conversationId")
- private String conversationId;
- /**
- * gpt账号id
- */
- @TableField("chatgptaccountid")
- private String chatgptaccountid;
- /**
- * 会话标题
- */
- private String title;
- /**
- * 消息id
- */
- private String messageId;
- }
|