package domain type GoodsSku struct { Id int `xorm:"'id'" json:"id"` SkuName string `xorm:"'sku_name'" json:"sku_name"` Price float64 `xorm:"'price'" json:"price"` HistoricalPrices float64 `xorm:"'historical_prices'" json:"historical_prices"` InventoryNumber int `xorm:"'inventory_number'" json:"inventory_number"` CommodityAreaId int `xorm:"'commodity_area_id'" json:"commodity_area_id"` GoodsId int `xorm:"'goods_id'" json:"goods_id"` }