package response import ( "server/dao" ) type SysAuthorityResponse struct { Authority dao.SysAuthority `json:"authority"` } type SysAuthorityCopyResponse struct { Authority dao.SysAuthority `json:"authority"` OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID }