package tech.aiflowy.ai.entity.base;
|
|
import tech.aiflowy.common.entity.DateEntity;
|
import com.mybatisflex.annotation.Id;
|
import com.mybatisflex.annotation.KeyType;
|
|
import java.io.Serializable;
|
import java.math.BigInteger;
|
import java.util.Date;
|
|
|
public class AiChatTopicBase extends DateEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id(keyType = KeyType.Generator, value = "snowFlakeId")
|
private BigInteger id;
|
|
private BigInteger accountId;
|
|
private String title;
|
|
private Date created;
|
|
private Date modified;
|
|
public BigInteger getId() {
|
return id;
|
}
|
|
public void setId(BigInteger id) {
|
this.id = id;
|
}
|
|
public BigInteger getAccountId() {
|
return accountId;
|
}
|
|
public void setAccountId(BigInteger accountId) {
|
this.accountId = accountId;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
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;
|
}
|
|
}
|