Skip to content

AuthMenuNode

Schema:AuthMenuNode

OpenAPI Specification

yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    AuthMenuNode:
      type: object
      properties:
        id:
          type: integer
          format: int64
          description: 菜单/权限 ID
        parentId:
          type: integer
          format: int64
          description: 父节点 ID;顶级 0
        permCode:
          type: string
          description: 菜单权限码
        permName:
          type: string
          description: 菜单显示名
        icon:
          type: string
          description: 菜单图标
        path:
          type: string
          description: 前端路由
        sortNo:
          type: integer
          description: 排序号
        children:
          type: array
          items:
            $ref: '#/components/schemas/AuthMenuNode'
          description: 子菜单
      x-apifox-orders:
        - id
        - parentId
        - permCode
        - permName
        - icon
        - path
        - sortNo
        - children
      x-apifox-folder: ''
  securitySchemes: {}
servers: []
security: []