This commit is contained in:
邹宗楠
2026-06-24 16:17:43 +08:00
parent c4717ecec7
commit 5bbc71a47f
20 changed files with 61039 additions and 60687 deletions

View File

@@ -193,6 +193,21 @@ func (o *GoodsOrderOriginal) TableUnique() [][]string {
}
}
// GoodsOrderImg 订单图片上传记录
type GoodsOrderImg struct {
ID int64 `orm:"column(id)" json:"-"`
CreatedAt time.Time `orm:"auto_now_add;type(datetime)" json:"createdAt"`
VendorOrderID string `orm:"column(vendor_order_id);size(48)" json:"vendorOrderID"`
VendorID int `orm:"column(vendor_id)" json:"vendorID"`
OriginalData string `orm:"type(text)" json:"-"`
}
func (o *GoodsOrderImg) TableIndex() [][]string {
return [][]string{
[]string{"CreatedAt"},
}
}
type OrderSku struct {
ID int64 `orm:"column(id)" json:"id"`
VendorOrderID string `orm:"column(vendor_order_id);size(48)" json:"vendorOrderID"`