Goods.go 335 B

123456789
  1. package domain
  2. type Goods struct {
  3. Id int `xorm:"'id'" json:"id"`
  4. TypeId int `xorm:"'type_id'" json:"type_id"`
  5. GoodsName string `xorm:"'goods_name'" json:"goods_name"`
  6. IntroductionId int `xorm:"'introduction_id'" json:"introduction_id"`
  7. TagIds string `xorm:"'tag_ids'" json:"tag_ids"`
  8. }