Files
sundynix-go/model/system/request/sys_role.go
T
2025-09-14 21:58:44 +08:00

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"`
}