mysql_basket_structs.go 384 B

12345678910111213141516171819202122
  1. package utils
  2. type MySql_basket_currency struct {
  3. Id int
  4. Name string
  5. Coefficient float64
  6. Code string
  7. Symbol string
  8. }
  9. type MySql_basket_product struct {
  10. A_product_id int
  11. A_price float64
  12. A_quantity int
  13. }
  14. type MySql_basket struct {
  15. Products *[]MySql_basket_product
  16. Currency *MySql_basket_currency
  17. TotalSum float64
  18. TotalCount int
  19. }