GoodsSku.go 509 B

1234567891011
  1. package domain
  2. type GoodsSku struct {
  3. Id int `xorm:"'id'" json:"id"`
  4. SkuName string `xorm:"'sku_name'" json:"sku_name"`
  5. Price float64 `xorm:"'price'" json:"price"`
  6. HistoricalPrices float64 `xorm:"'historical_prices'" json:"historical_prices"`
  7. InventoryNumber int `xorm:"'inventory_number'" json:"inventory_number"`
  8. CommodityAreaId int `xorm:"'commodity_area_id'" json:"commodity_area_id"`
  9. GoodsId int `xorm:"'goods_id'" json:"goods_id"`
  10. }