{{define "model"}}package model import ( "time" ) type {{Pascal .Entity}} struct { Id uint `gorm:"primaryKey"` Name string `gorm:"not null"` CreatedAt time.Time UpdatedAt time.Time } {{end}}