Files
ai_proxy/server/model/system/response/sys_authority.go
2026-03-03 15:39:23 +08:00

13 lines
335 B
Go

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