2020-04-08 11:07:27 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
import "gin-vue-admin/model"
|
|
|
|
|
|
|
|
// Add menu authority info structure
|
|
|
|
type AddMenuAuthorityInfo struct {
|
|
|
|
Menus []model.SysBaseMenu
|
|
|
|
AuthorityId string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get role by id structure
|
|
|
|
type AuthorityIdInfo struct {
|
|
|
|
AuthorityId string
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|