mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-14 11:17:55 +00:00
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
|
||
|
|
}
|