sys_authority.go 310 B

1234567891011121314
  1. package response
  2. import (
  3. "server/dao/system"
  4. )
  5. type SysAuthorityResponse struct {
  6. Authority system.SysAuthority `json:"authority"`
  7. }
  8. type SysAuthorityCopyResponse struct {
  9. Authority system.SysAuthority `json:"authority"`
  10. OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
  11. }