-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAiChatReasoning.java
More file actions
97 lines (80 loc) · 2.06 KB
/
Copy pathAiChatReasoning.java
File metadata and controls
97 lines (80 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.github.aiassistant.entity;
import java.io.Serializable;
import java.util.Date;
// @ApiModel(value = "AiChatReasoning", description = "思考")
// @Data
// @TableName("ai_chat_reasoning")
public class AiChatReasoning implements Serializable {
// @TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 聊天ID
*/
private Integer aiChatId;
/**
* 问题
*/
private String question;
/**
* 是否需要问题拆分
*/
private Boolean needSplittingFlag;
/**
* 用户提问的消息ID
*/
private Integer userChatHistoryId;
/**
* 创建时间
*/
private Date createTime;
/**
* 每次用户请求的唯一序号
*/
private String userQueryTraceNumber;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getAiChatId() {
return aiChatId;
}
public void setAiChatId(Integer aiChatId) {
this.aiChatId = aiChatId;
}
public String getQuestion() {
return question;
}
public void setQuestion(String question) {
this.question = question;
}
public Boolean getNeedSplittingFlag() {
return needSplittingFlag;
}
public void setNeedSplittingFlag(Boolean needSplittingFlag) {
this.needSplittingFlag = needSplittingFlag;
}
public Integer getUserChatHistoryId() {
return userChatHistoryId;
}
public void setUserChatHistoryId(Integer userChatHistoryId) {
this.userChatHistoryId = userChatHistoryId;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getUserQueryTraceNumber() {
return userQueryTraceNumber;
}
public void setUserQueryTraceNumber(String userQueryTraceNumber) {
this.userQueryTraceNumber = userQueryTraceNumber;
}
@Override
public String toString() {
return id + "#" + question;
}
}