|
1234567 |
- package model
-
- type ProductGoods struct {
- Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
- SourceId int `json:"source_id" xorm:"not null comment('product表id') INT(11)"`
- GoodsId int `json:"goods_id" xorm:"not null comment('guide_goods表id') INT(11)"`
- }
|