Files
rag-local/kb/model/entity/dataset.go
T
2026-08-05 10:28:44 +08:00

14 lines
514 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type Dataset struct {
Id int64 `orm:"id" json:"id"`
Name string `orm:"name" json:"name"`
Description string `orm:"description" json:"description"`
EmbeddingCfgId int64 `orm:"embedding_cfg_id" json:"embedding_cfg_id"`
Status int `orm:"status" json:"status"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
UpdatedAt *gtime.Time `orm:"updated_at" json:"updated_at"`
}