From 697ce77e02356347d39363a4e722e7f0854f48ca Mon Sep 17 00:00:00 2001 From: H3ALY Date: Mon, 24 Mar 2025 22:01:44 +0000 Subject: [PATCH] update draw structure --- models/draw.go | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/models/draw.go b/models/draw.go index e0207ed..b40f45a 100644 --- a/models/draw.go +++ b/models/draw.go @@ -1,10 +1,14 @@ package models type Draw struct { - ID int - Date string - Numbers string - Spend float64 - Return float64 - ProfitLoss float64 + ID int + Date string + Machine string + Ballset string + Ball1 string + Ball2 string + Ball3 string + Ball4 string + Ball5 string + Thunderball string }