lckt-server/model/system/response/sys_authority.go
2025-04-09 12:17:33 +08:00

13 lines
324 B
Go

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