15 lines
529 B
Go
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"`
|
|
}
|