mirror of https://gitee.com/godoos/godoos.git
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.
14 lines
293 B
14 lines
293 B
package model
|
|
|
|
type ServerUser struct {
|
|
BaseModel
|
|
DiskId string `json:"disk_id"`
|
|
AuthType string `json:"auth_type"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Nickname string `json:"nickname"`
|
|
}
|
|
|
|
func (*ServerUser) TableName() string {
|
|
return "server_user"
|
|
}
|
|
|