| 123456789101112131415161718192021222324252627 |
- /*
- * @desc:角色api
- * @company:云南奇讯科技有限公司
- * @Author: yixiaohu<yxh669@qq.com>
- * @Date: 2022/3/30 9:16
- */
- 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/entity"
- )
- type RoleListReq struct {
- g.Meta `path:"/role/list" tags:"角色管理" method:"get" summary:"角色列表"`
- RoleName string `p:"roleName"` //参数名称
- Status string `p:"status"` //状态
- commonApi.PageReq
- }
- type RoleListRes struct {
- g.Meta `mime:"application/json"`
- commonApi.ListRes
- List []*entity.SysRole `json:"list"`
- }
|