智慧食堂
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.

18 lines
392 B

  1. package db
  2. import (
  3. model2 "applet/app/db/model"
  4. )
  5. type AdminRolePermissionGroup struct {
  6. model2.Admin `xorm:"extends"`
  7. model2.AdminRole `xorm:"extends"`
  8. model2.Role `xorm:"extends"`
  9. model2.RolePermissionGroup `xorm:"extends"`
  10. model2.PermissionGroup `xorm:"extends"`
  11. }
  12. func (AdminRolePermissionGroup) TableName() string {
  13. return "admin"
  14. }