Files
slogan/server/styleagent/model/entity/cps_category.go
T
admin a6de9ebd12 Add 'server/' from commit 'e64421295fff83acbb6d6ab3d3b27f3ef8368f00'
git-subtree-dir: server
git-subtree-mainline: c4e617ada7
git-subtree-split: e64421295f
2026-08-04 15:02:35 +08:00

15 lines
537 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"`
}