14 lines
514 B
Go
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"`
|
|
}
|