Files
slogan/styleagent/model/entity/cps_product.go
T
adminandClaude Opus 4.7 76100a7131 feat: CPS 引擎(三联盟适配器 + 方案驱动推荐 + 6 接口 + 降级)
美团/京东/淘宝联盟适配器(选品/搜索/转链,未配置 key 优雅降级),
CPS 四表五层骨架,方案驱动推荐零新增 LLM(发型/买同款/到店试穿/场合),
定时同步 + 点击日志 + 最近优惠;outfit_plan 容错迁移 occasion 列;
Dockerfile 补 mesa/nodejs 运行时。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-31 15:48:30 +08:00

22 lines
989 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type CpsProduct struct {
Id int64 `orm:"id" json:"id"`
Source string `orm:"source" json:"source"`
OuterId string `orm:"outer_id" json:"outer_id"`
CategoryCode string `orm:"category_code" json:"category_code"`
Name string `orm:"name" json:"name"`
CoverUrl string `orm:"cover_url" json:"cover_url"`
PriceFen int64 `orm:"price_fen" json:"price_fen"`
ShopName string `orm:"shop_name" json:"shop_name"`
CommissionRate int `orm:"commission_rate" json:"commission_rate"`
City string `orm:"city" json:"city"`
SceneTags string `orm:"scene_tags" json:"scene_tags"`
Raw string `orm:"raw" json:"raw"`
Status int `orm:"status" json:"status"`
SyncAt *gtime.Time `orm:"sync_at" json:"sync_at"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
}