package tech.aiflowy.ai.entity.base;
|
|
import tech.aiflowy.common.entity.DateEntity;
|
import com.mybatisflex.annotation.Column;
|
import com.mybatisflex.annotation.Id;
|
import com.mybatisflex.annotation.KeyType;
|
import com.mybatisflex.core.handler.FastjsonTypeHandler;
|
|
import java.io.Serializable;
|
import java.math.BigInteger;
|
import java.util.Date;
|
import java.util.Map;
|
|
|
public class AiBotMessageBase extends DateEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id(keyType = KeyType.Generator, value = "snowFlakeId")
|
private BigInteger id;
|
|
/**
|
* Bot ID
|
*/
|
@Column(comment = "Bot ID")
|
private BigInteger botId;
|
|
/**
|
* 关联的账户ID
|
*/
|
@Column(comment = "关联的账户ID")
|
private BigInteger accountId;
|
|
/**
|
* 回话ID
|
*/
|
@Column(comment = "回话ID")
|
private String sessionId;
|
|
private String role;
|
|
private String content;
|
|
private String image;
|
|
private Integer promptTokens;
|
|
private Integer completionTokens;
|
|
private Integer totalTokens;
|
|
/**
|
* 1是external 消息,0: bot页面消息
|
*
|
*/
|
private int isExternalMsg;
|
|
/**
|
* 方法定义
|
*/
|
@Column(comment = "方法定义")
|
private String functions;
|
|
@Column(typeHandler = FastjsonTypeHandler.class)
|
private Map<String, Object> options;
|
|
private Date created;
|
|
private Date modified;
|
|
public BigInteger getId() {
|
return id;
|
}
|
|
public void setId(BigInteger id) {
|
this.id = id;
|
}
|
|
public BigInteger getBotId() {
|
return botId;
|
}
|
|
public void setBotId(BigInteger botId) {
|
this.botId = botId;
|
}
|
|
public BigInteger getAccountId() {
|
return accountId;
|
}
|
|
public void setAccountId(BigInteger accountId) {
|
this.accountId = accountId;
|
}
|
|
public String getSessionId() {
|
return sessionId;
|
}
|
|
public void setSessionId(String sessionId) {
|
this.sessionId = sessionId;
|
}
|
|
public String getRole() {
|
return role;
|
}
|
|
public void setRole(String role) {
|
this.role = role;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getImage() {
|
return image;
|
}
|
|
public void setImage(String image) {
|
this.image = image;
|
}
|
|
public Integer getPromptTokens() {
|
return promptTokens;
|
}
|
|
public void setPromptTokens(Integer promptTokens) {
|
this.promptTokens = promptTokens;
|
}
|
|
public Integer getCompletionTokens() {
|
return completionTokens;
|
}
|
|
public void setCompletionTokens(Integer completionTokens) {
|
this.completionTokens = completionTokens;
|
}
|
|
public Integer getTotalTokens() {
|
return totalTokens;
|
}
|
|
public void setTotalTokens(Integer totalTokens) {
|
this.totalTokens = totalTokens;
|
}
|
|
public String getFunctions() {
|
return functions;
|
}
|
|
public void setFunctions(String functions) {
|
this.functions = functions;
|
}
|
|
public Map<String, Object> getOptions() {
|
return options;
|
}
|
|
public void setOptions(Map<String, Object> options) {
|
this.options = options;
|
}
|
|
public Date getCreated() {
|
return created;
|
}
|
|
public void setCreated(Date created) {
|
this.created = created;
|
}
|
|
public Date getModified() {
|
return modified;
|
}
|
|
public void setModified(Date modified) {
|
this.modified = modified;
|
}
|
|
public int getIsExternalMsg() {
|
return isExternalMsg;
|
}
|
|
public void setIsExternalMsg(int isExternalMsg) {
|
this.isExternalMsg = isExternalMsg;
|
}
|
}
|