param_menu.go 527 字节
package allied_creation_user

//创建菜单
type (
	ReqMenus struct {
	}

	DataMenus struct {
	}
)

//更新菜单
type (
	ReqMenusUpdate struct {
		MenusId int64 `json:"menusId"`
	}

	DataMenusUpdate struct {
	}
)

//移除菜单
type (
	ReqMenusRemove struct {
		MenuId int64 `json:"roleId"`
	}

	DataMenusRemove struct {
	}
)

//返回菜单
type (
	ReqMenusGet struct {
		MenuId int64 `json:"menuId"`
	}

	DataMenusGet struct {
	}
)

//返回菜单列表
type (
	ReqMenusSearch struct {
	}

	DataMenusSearch struct {
	}
)