goweb-gin-demo/model/web/user_authority.go

11 lines
259 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package web
type SysUseAuthority struct {
SysUserId uint `gorm:"column:sys_user_id"`
SysAuthorityAuthorityId string `gorm:"column:sys_authority_authority_id"`
}
func (s *SysUseAuthority) TableName() string {
return "sys_user_authority"
}