package models type Item struct { Id string `json:"id"` Name string `json:"name"` Amount int64 `json:"amount"` Price float32 `json:"price"` SalesAmount int64 `json:"sales_amount"` }