- package domain
- // Goods 商品
- type Goods struct {
- Id int `xorm:"'id'" json:"id"`
- TypeId int `xorm:"'type_id'" json:"type_id"`
- GoodsName string `xorm:"'goods_name'" json:"goods_name"`
- IntroductionId int `xorm:"'introduction_id'" json:"introduction_id"`
- SalesVolume int `xorm:"'sales_volume'" json:"sales_volume"`
- TagIds string `xorm:"'tag_ids'" json:"tag_ids"`
- }
|