sys_authority.go 294 B

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