123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- swagger: "2.0"
- info:
- title: 接入统一身份认证demo
- description: |
- 接入统一身份认证demo
- version: 1.0.0
- termsOfService: http://127.0.0.1:8083/swagger/swagger.json
- basePath: /api
- paths: {}
- definitions:
- common.ControlBy:
- title: ControlBy
- type: object
- coreModel.BeegoApi:
- title: BeegoApi
- type: object
- dto.RoleApiUpdateReq:
- title: RoleApiUpdateReq
- type: object
- properties:
- apiList:
- description: api路由列表
- type: array
- items:
- $ref: '#/definitions/coreModel.BeegoApi'
- roleKey:
- description: 服务id
- type: string
- example: test
- response.Msg:
- title: Msg
- type: object
- properties:
- code:
- type: integer
- format: int32
- msg:
- type: string
- requestId:
- type: string
- status:
- type: string
- response.Response:
- title: Response
- type: object
- properties:
- code:
- type: integer
- format: int32
- data:
- $ref: '#/definitions/response.interface'
- msg:
- type: string
- requestId:
- type: string
- status:
- type: string
- response.interface:
- title: interface
- type: object
|