Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Language ¶
type Language struct { model.Model // to add your customize param inside here Code string `json:"code" gorm:"type:varchar(50);unique"` Name string `json:"name" gorm:"type:varchar(50)"` }
Language model for Language
type User ¶
type User struct { model.Model // to add your customize param inside here UserName string `json:"user_name" gorm:"type:varchar(50);unique"` NameLocal string `json:"name_local" gorm:"type:varchar(50)"` Phone string `json:"phone"` Email string `json:"email"` Languages []Language `json:"languages"` }
User model for User
Click to show internal directories.
Click to hide internal directories.