10 lines
221 B
Go
10 lines
221 B
Go
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"`
|
|
}
|