package models import "time" type Customer struct { ID uint `gorm:"primaryKey" json:"id"` Name string `json:"name"` Address string `json:"address"` Phone string `json:"phone"` Email string `json:"email"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }