14 lines
254 B
Go
14 lines
254 B
Go
|
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
|
||
|
}
|