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: Menu / permission ID
        parentId:
          type: integer
          format: int64
          description: Parent node ID; top level is 0
        permCode:
          type: string
          description: Menu permission code
        permName:
          type: string
          description: Menu display name
        icon:
          type: string
          description: Menu icon
        path:
          type: string
          description: Frontend route
        sortNo:
          type: integer
          description: Sort order
        children:
          type: array
          items:
            $ref: '#/components/schemas/AuthMenuNode'
          description: Submenu
      x-apifox-orders:
        - id
        - parentId
        - permCode
        - permName
        - icon
        - path
        - sortNo
        - children
      x-apifox-folder: ''
  securitySchemes: {}
servers: []
security: []