package domain // GoodsCommodityArea 商品属性 type GoodsCommodityArea struct { Id int `xorm:"'id'" json:"id"` GoodsId int `xorm:"'goods_id'" json:"goods_id"` CommodityAreaName string `xorm:"'commodity_area_name'" json:"commodity_area_name"` DetailImage string `xorm:"'detail_image'" json:"detail_image"` DetailIntroductionId int `xorm:"'detail_introduction_id'" json:"detail_introduction_id"` }