ssh-manager/model/User.go

9 lines
176 B
Go
Raw Normal View History

2020-11-16 16:41:02 +08:00
package model
type User struct {
Model
Phone int `gorm:"not null;unique;type:bigint"`
Email string `gorm:"unique"`
Servers []Server `gorm:"ForeignKey:BindUser"`
}