package model import ( "time" "gorm.io/gorm" ) type User struct { Id uint `gorm:"primaryKey"` Name string `gorm:"not null"` CreatedAt time.Time UpdatedAt time.Time DeletedAt gorm.DeletedAt `gorm:"index" json:"-"` }