Files
Go-Web-Template/server/model/system/response/sys_authority.go

13 lines
342 B
Go

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