Files
slogan/server/styleagent/model/entity/cps_category.go
T
2026-08-17 13:19:15 +08:00

15 lines
529 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type CpsCategory struct {
Id int64 `orm:"id" json:"id"`
Code string `orm:"code" json:"code"`
Name string `orm:"name" json:"name"`
ParentCode string `orm:"parent_code" json:"parent_code"`
Source string `orm:"source" json:"source"`
SourceCatId string `orm:"source_cat_id" json:"source_cat_id"`
Sort int `orm:"sort" json:"sort"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
}