change the field to time.Time for correctness

This commit is contained in:
2025-10-29 09:29:10 +00:00
parent 71c8d4d06c
commit 5fcb4fb016

View File

@@ -1,11 +1,13 @@
package models package models
import "time"
type Ticket struct { type Ticket struct {
Id int Id int
UserId int UserId int
SyndicateId *int SyndicateId *int
GameType string GameType string
DrawDate string DrawDate time.Time
Ball1 int Ball1 int
Ball2 int Ball2 int
Ball3 int Ball3 int