goweb-gin-demo/server/model/system/response/sys_authority.go

13 lines
315 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package response
2021-11-10 11:11:14 +08:00
import "goweb-gin-demo/model/system"
2021-10-29 14:39:50 +08:00
type SysAuthorityResponse struct {
2021-11-10 11:11:14 +08:00
Authority system.SysAuthority `json:"authority"`
2021-10-29 14:39:50 +08:00
}
type SysAuthorityCopyResponse struct {
2021-11-10 11:11:14 +08:00
Authority system.SysAuthority `json:"authority"`
2021-10-29 14:39:50 +08:00
OldAuthorityId string `json:"oldAuthorityId"` // 旧角色ID
}