goweb-gin-demo/model/web/response/authority.go

13 lines
306 B
Go
Raw Normal View History

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