You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
341 B

package model
import (
"gorm.io/gorm"
)
type User struct {
gorm.Model
Name string `json:"name";gorm:"type:varchar(20);not null"`
Telephone string `json:"telephone";gorm:"type:varchar(11);not null;unique"`
Password string `json:"password";gorm:"type:varchar(20);not null"`
}
func (u *User) TableName() string {
return "user"
}