sys_authority.go 314 B

123456789101112
  1. package response
  2. import "lc-fangdaosha/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. }