GoodsCommodityArea.go 457 B

12345678910
  1. package domain
  2. // GoodsCommodityArea 商品属性
  3. type GoodsCommodityArea struct {
  4. Id int `xorm:"'id'" json:"id"`
  5. GoodsId int `xorm:"'goods_id'" json:"goods_id"`
  6. CommodityAreaName string `xorm:"'commodity_area_name'" json:"commodity_area_name"`
  7. DetailImage string `xorm:"'detail_image'" json:"detail_image"`
  8. DetailIntroductionId int `xorm:"'detail_introduction_id'" json:"detail_introduction_id"`
  9. }