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"`
|
|
|
|
OldAuthorityId string `json:"oldAuthorityId"`
|
|
|
|
}
|