Goods.go 418 B

1234567891011
  1. package domain
  2. // Goods 商品
  3. type Goods struct {
  4. Id int `xorm:"'id'" json:"id"`
  5. TypeId int `xorm:"'type_id'" json:"type_id"`
  6. GoodsName string `xorm:"'goods_name'" json:"goods_name"`
  7. IntroductionId int `xorm:"'introduction_id'" json:"introduction_id"`
  8. SalesVolume int `xorm:"'sales_volume'" json:"sales_volume"`
  9. TagIds string `xorm:"'tag_ids'" json:"tag_ids"`
  10. }