Files
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

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"`
}