type Buy struct {
Id int `json:"id"`
Price int `json:"price"`
CreatedAt time.Time `json:"created_at"`
UserId int `json:"user_id"`
CompanyId int `json:"company_id"`
}
type Operation struct {
Id int `json:"id"`
Price int `json:"price"`
CreatedAt int `json:"created_at"`
BuyerId int `json:"user_id"`
SellerId int `json:"seller_id"`
CompanyId int `json:"company_id"`
}
type Sale struct {
Id int `json:"id"`
Price int `json:"price"`
CreatedAt time.Time `json:"created_at"`
UserId int `json:"user_id"`
CompanyId int `json:"company_id"`
}