美团/京东/淘宝联盟适配器(选品/搜索/转链,未配置 key 优雅降级), CPS 四表五层骨架,方案驱动推荐零新增 LLM(发型/买同款/到店试穿/场合), 定时同步 + 点击日志 + 最近优惠;outfit_plan 容错迁移 occasion 列; Dockerfile 补 mesa/nodejs 运行时。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
15 lines
537 B
Go
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"`
|
|
}
|