| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /*
- * @desc:菜单api
- * @company:云南奇讯科技有限公司
- * @Author: yixiaohu<yxh669@qq.com>
- * @Date: 2022/3/18 10:27
- */
- package system
- import (
- "github.com/gogf/gf/v2/frame/g"
- commonApi "github.com/tiger1103/gfast/v3/api/v1/common"
- "github.com/tiger1103/gfast/v3/internal/app/system/model"
- "github.com/tiger1103/gfast/v3/internal/app/system/model/entity"
- )
- type RuleSearchReq struct {
- g.Meta `path:"/menu/list" tags:"菜单管理" method:"get" summary:"菜单列表"`
- commonApi.Author
- Title string `p:"menuName" `
- Component string `p:"component"`
- }
- type RuleListRes struct {
- g.Meta `mime:"application/json"`
- Rules []*model.SysAuthRuleTreeRes `json:"rules"`
- }
- type RuleAddReq struct {
- g.Meta `path:"/menu/add" tags:"菜单管理" method:"post" summary:"添加菜单"`
- commonApi.Author
- MenuType uint `p:"menuType" v:"min:0|max:2#菜单类型最小值为:min|菜单类型最大值为:max"`
- Pid uint `p:"parentId" v:"min:0"`
- Name string `p:"name" v:"required#请填写规则名称"`
- Title string `p:"menuName" v:"required|length:1,100#请填写标题|标题长度在:min到:max位"`
- Icon string `p:"icon"`
- Weigh int `p:"menuSort" `
- Condition string `p:"condition" `
- Remark string `p:"remark" `
- IsHide uint `p:"isHide"`
- Path string `p:"path"`
- Redirect string `p:"redirect"` // 路由重定向
- Roles []uint `p:"roles"` // 角色ids
- Component string `p:"component" v:"required-if:menuType,1#组件路径不能为空"`
- IsLink uint `p:"isLink"`
- IsIframe uint `p:"isIframe"`
- IsCached uint `p:"isKeepAlive"`
- IsAffix uint `p:"isAffix"`
- LinkUrl string `p:"linkUrl"`
- }
- type RuleAddRes struct {
- }
- type RuleGetParamsReq struct {
- g.Meta `path:"/menu/getParams" tags:"菜单管理" method:"get" summary:"获取添加、编辑菜单相关参数"`
- commonApi.Author
- }
- type RuleGetParamsRes struct {
- g.Meta `mime:"application/json"`
- Roles []*entity.SysRole `json:"roles"`
- Menus []*model.SysAuthRuleInfoRes `json:"menus"`
- }
- type RuleInfoReq struct {
- g.Meta `path:"/menu/get" tags:"菜单管理" method:"get" summary:"获取菜单信息"`
- commonApi.Author
- Id uint `p:"required#菜单id必须"`
- }
- type RuleInfoRes struct {
- g.Meta `mime:"application/json"`
- Rule *entity.SysAuthRule `json:"rule"`
- RoleIds []uint `json:"roleIds"`
- }
- type RuleUpdateReq struct {
- g.Meta `path:"/menu/update" tags:"菜单管理" method:"put" summary:"修改菜单"`
- commonApi.Author
- Id uint `p:"id" v:"required#id必须"`
- MenuType uint `p:"menuType" v:"min:0|max:2#菜单类型最小值为:min|菜单类型最大值为:max"`
- Pid uint `p:"parentId" v:"min:0"`
- Name string `p:"name" v:"required#请填写规则名称"`
- Title string `p:"menuName" v:"required|length:1,100#请填写标题|标题长度在:min到:max位"`
- Icon string `p:"icon"`
- Weigh int `p:"menuSort" `
- Condition string `p:"condition" `
- Remark string `p:"remark" `
- IsHide uint `p:"isHide"`
- Path string `p:"path"`
- Redirect string `p:"redirect"` // 路由重定向
- Roles []uint `p:"roles"` // 角色ids
- Component string `p:"component" v:"required-if:menuType,1#组件路径不能为空"`
- IsLink uint `p:"isLink"`
- IsIframe uint `p:"isIframe"`
- IsCached uint `p:"isKeepAlive"`
- IsAffix uint `p:"isAffix"`
- LinkUrl string `p:"linkUrl"`
- }
- type RuleUpdateRes struct {
- }
- type RuleDeleteReq struct {
- g.Meta `path:"/menu/delete" tags:"菜单管理" method:"delete" summary:"删除菜单"`
- commonApi.Author
- Ids []int `p:"ids" v:"required#菜单id必须"`
- }
- type RuleDeleteRes struct {
- }
|