15 lines
286 B
Go
15 lines
286 B
Go
package request
|
|
|
|
import common "sundynix-go/model/commom/request"
|
|
|
|
type GetRoleList struct {
|
|
common.PageInfo
|
|
Code string `json:"code" form:"code"`
|
|
Name string `json:"name" form:"name"`
|
|
}
|
|
|
|
type GrantMenu struct {
|
|
RoleId string `json:"roleId"`
|
|
MenuIds []string `json:"menuIds"`
|
|
}
|