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.

10 lines
262 B

3 years ago
  1. package system
  2. type SysUseAuthority struct {
  3. SysUserId uint `gorm:"column:sys_user_id"`
  4. SysAuthorityAuthorityId string `gorm:"column:sys_authority_authority_id"`
  5. }
  6. func (s *SysUseAuthority) TableName() string {
  7. return "sys_user_authority"
  8. }