2021-07-16 20:08:11 +08:00
|
|
|
package response
|
|
|
|
|
2021-08-21 11:01:34 +08:00
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/model/system"
|
2021-07-16 20:08:11 +08:00
|
|
|
|
|
|
|
type SysAuthorityResponse struct {
|
|
|
|
Authority system.SysAuthority `json:"authority"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SysAuthorityCopyResponse struct {
|
|
|
|
Authority system.SysAuthority `json:"authority"`
|
|
|
|
OldAuthorityId string `json:"oldAuthorityId"` // 旧角色ID
|
|
|
|
}
|