2025-08-24 01:59:34 +09:00

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"`
}