resource/backend/api/users.go

11 lines
229 B
Go
Raw Normal View History

2022-07-04 14:23:36 +08:00
package api
import "gorm.io/gorm"
type User struct {
gorm.Model
Name string `json:"name,omitempty"`
Phone string `json:"phone,omitempty"`
Email string `json:"mobile,omitempty"`
Password string `json:"password,omitempty"`
}