bygdata/model/system/response/sys_authority.go
liuzhiwang e57ec346ea add
2026-02-02 17:57:11 +08:00

13 lines
312 B
Go

package response
import "byg-backend/model/system"
type SysAuthorityResponse struct {
Authority system.SysAuthority `json:"authority"`
}
type SysAuthorityCopyResponse struct {
Authority system.SysAuthority `json:"authority"`
OldAuthorityId uint `json:"oldAuthorityId"` // 旧角色ID
}