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