package models import ( "github.com/jinzhu/gorm" ) type User struct { gorm.Model FullName string `gorm:"not null"` RegionID uint `gorm:"not null"` Mobile string `gorm:"unique;not null"` Password string `gorm:"not null"` Region Region }