病历夹、聊天历史
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("ai_chat_content")
|
||||
public class AiChatContent implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer userId;
|
||||
|
||||
//聊天助手id
|
||||
private String chatAssistantId;
|
||||
|
||||
//聊天助手名称
|
||||
private String chatAssistantName;
|
||||
|
||||
//对话id
|
||||
private String chatId;
|
||||
|
||||
//对话名称
|
||||
private String chatName;
|
||||
|
||||
//对话内容
|
||||
private String content;
|
||||
|
||||
private Date startTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("ai_record_folder")
|
||||
public class AiRecordFolder implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer userId;
|
||||
|
||||
//病历夹名称
|
||||
private String title;
|
||||
|
||||
//患者姓名
|
||||
private String patientName;
|
||||
|
||||
//对话id
|
||||
private String chatId;
|
||||
|
||||
private Date startTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user