package entity import "github.com/gogf/gf/v2/os/gtime" type Chunk struct { Id int64 `orm:"id" json:"id"` DatasetId int64 `orm:"dataset_id" json:"dataset_id"` DocumentId int64 `orm:"document_id" json:"document_id"` Seq int `orm:"seq" json:"seq"` Content string `orm:"content" json:"content"` Meta string `orm:"meta" json:"meta"` CreatedAt *gtime.Time `orm:"created_at" json:"created_at"` }