package orm import "gorm.io/gorm" type User struct { gorm.Model TIN string Phone string `gorm:"uniqueIndex:idx_phone"` PasswdHash string }