sys_authority.go 311 B

12345678910111213
  1. package response
  2. import "log-server/model/system"
  3. type SysAuthorityResponse struct {
  4. Authority system.SysAuthority `json:"authority"`
  5. }
  6. type SysAuthorityCopyResponse struct {
  7. Authority system.SysAuthority `json:"authority"`
  8. OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
  9. }