package model import "time" type Product struct { ID int Name string Price float64 Description string CreatedAt time.Time `json:"-"` UpdatedAt time.Time `json:"-"` } func (Product) TableName() string { return "products" }