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
593 B
17 lines
593 B
package model
|
|
|
|
import (
|
|
"github.com/jinzhu/gorm"
|
|
uuid "github.com/satori/go.uuid"
|
|
)
|
|
|
|
type SysUser struct {
|
|
gorm.Model
|
|
UUID uuid.UUID `json:"uuid"`
|
|
Username string `json:"userName"`
|
|
Password string `json:"-"`
|
|
NickName string `json:"nickName" gorm:"default:'QMPlusUser'"`
|
|
HeaderImg string `json:"headerImg" gorm:"default:'http://www.henrongyi.top/avatar/lufu.jpg'"`
|
|
Authority SysAuthority `json:"authority" gorm:"ForeignKey:AuthorityId;AssociationForeignKey:AuthorityId"`
|
|
AuthorityId string `json:"authorityId" gorm:"default:888"`
|
|
}
|