Files
st/server/model/system/response/sys_authority.go
2026-02-10 17:48:27 +08:00

13 lines
329 B
Go

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