1. Schemas
YiYi
  • 🦊一分钟,了解 Apifox !
  • 示例项目
    • 查询宠物详情
      GET
    • 新建宠物信息
      POST
    • 修改宠物信息
      PUT
    • 删除宠物信息
      DELETE
    • 根据状态查找宠物列表
      GET
  • yiyi
    • 系统用户接口
      • 注册接口
      • 新增、修改用户
      • 用户列表
      • 登录用户信息
    • 系统页面权限接口
      • 新增、修改角色
      • 新增、修改页面
      • 根据id删除角色
      • 根据id删除页面
      • 查询角色列表
      • 查询页面列表
    • 系统用户登录接口
      • 登录接口
      • 登录接口
    • 演示接口
      • hello 接口
      • hello name 接口
      • 测试异常返回
    • 根路径
      • 访问根目录
  • 数据模型
    • 示例数据模型
      • Pet
      • Category
      • Tag
    • Schemas
      • ResultString
      • 系统用户类
      • SysPage
      • 角色类
      • Result系统用户类
      • ResultList系统用户类
      • ResultList角色类
      • ResultListSysPage
  1. Schemas

SysPage

页面管理

{
    "id": 0,
    "group": "string",
    "name": "string",
    "type": 0,
    "url": "string",
    "component": "string",
    "permission": "string",
    "method": "string",
    "sort": 0,
    "parentId": 0,
    "icon": "string",
    "isDel": 0,
    "updateTime": "2019-08-24T14:15:22.123Z",
    "createTime": "2019-08-24T14:15:22.123Z",
    "children": [
        {
            "id": 0,
            "group": "string",
            "name": "string",
            "type": 0,
            "url": "string",
            "component": "string",
            "permission": "string",
            "method": "string",
            "sort": 0,
            "parentId": 0,
            "icon": "string",
            "isDel": 0,
            "updateTime": "2019-08-24T14:15:22.123Z",
            "createTime": "2019-08-24T14:15:22.123Z",
            "children": []
        }
    ]
}
Built with