ssh-manager/model/User.go
2020-11-16 16:41:02 +08:00

9 lines
176 B
Go

package model
type User struct {
Model
Phone int `gorm:"not null;unique;type:bigint"`
Email string `gorm:"unique"`
Servers []Server `gorm:"ForeignKey:BindUser"`
}