package entity import "github.com/gogf/gf/v2/os/gtime" type SceneCategoryMap struct { Id int64 `orm:"id" json:"id"` SceneType string `orm:"scene_type" json:"scene_type"` Occasion string `orm:"occasion" json:"occasion"` Source string `orm:"source" json:"source"` CategoryCode string `orm:"category_code" json:"category_code"` Priority int `orm:"priority" json:"priority"` CreatedAt *gtime.Time `orm:"created_at" json:"created_at"` }