2020-04-08 14:00:08 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
import "gin-vue-admin/model"
|
|
|
|
|
|
|
|
type SysAuthorityResponse struct {
|
|
|
|
Authority model.SysAuthority `json:"authority"`
|
|
|
|
}
|
2020-04-20 16:21:50 +08:00
|
|
|
|
|
|
|
type SysAuthorityCopyResponse struct {
|
|
|
|
Authority model.SysAuthority `json:"authority"`
|
2021-05-11 17:26:06 +08:00
|
|
|
OldAuthorityId string `json:"oldAuthorityId"` // 旧角色ID
|
2020-04-20 16:21:50 +08:00
|
|
|
}
|