xiecheng_server/model/system/response/sys_authority.go
2025-03-28 17:14:57 +08:00

13 lines
335 B
Go

package response
import "git.echol.cn/loser/xiecheng_server/model/system"
type SysAuthorityResponse struct {
Authority system.SysAuthority `json:"authority"`
}
type SysAuthorityCopyResponse struct {
Authority system.SysAuthority `json:"authority"`
OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
}