From ba961c8bce7da8aec12c25a8402a7dc33509a727 Mon Sep 17 00:00:00 2001 From: RISE Date: Fri, 16 Jan 2026 18:24:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=93=E5=8C=85=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- docs/默认模块.openapi.json | 6818 +++++++++++++---- src/api/asset/loading.ts | 16 + src/api/basic/basicclass.ts | 10 + src/api/contract/contract.ts | 13 + src/api/finance/financenormalstu.ts | 26 + src/api/professional/teacherbase.ts | 6 + src/api/stuwork/classattendance.ts | 36 + src/api/stuwork/classleaveapply.ts | 86 + src/api/stuwork/classroombase.ts | 61 + src/api/stuwork/dormliveapply.ts | 75 + src/api/stuwork/dormroom.ts | 12 + src/api/stuwork/stuinnerleaveapplygroup.ts | 62 + src/api/stuwork/stuleaveapply.ts | 99 + src/api/stuwork/stupunlish.ts | 92 +- src/api/stuwork/stutemleaveapply.ts | 62 + src/api/stuwork/stuturnover.ts | 75 + src/api/stuwork/teachbuilding.ts | 72 + src/api/stuwork/teachclassroom.ts | 84 + src/config/global.ts | 24 + .../recruit/backSchoolCheckin/staticIndex.vue | 2 +- .../recruit/backSchoolCheckin/statistics.vue | 4 +- .../recruit/newstucheckin/statistics.vue | 4 +- .../recruitImitateAdjustBatch/mnTable.vue | 2 +- .../recruitstudentsignup/dorm_analysis.vue | 2 +- .../recruitstudentsignup/indexClass.vue | 2 +- .../recruitstudentsignup/interviewForm.vue | 2 +- .../recruit/recruitstudentsignup/list.vue | 2 +- .../recruitstudentsignupturnover/indexOld.vue | 160 - src/views/stuwork/classattendance/index.vue | 279 + src/views/stuwork/classleaveapply/detail.vue | 223 + src/views/stuwork/classleaveapply/form.vue | 471 ++ src/views/stuwork/classleaveapply/index.vue | 504 ++ src/views/stuwork/classroombase/arrange.vue | 223 + src/views/stuwork/classroombase/index.vue | 413 + src/views/stuwork/dormliveapply/form.vue | 199 + src/views/stuwork/dormliveapply/index.vue | 407 + .../stuwork/stuinnerleaveapplygroup/form.vue | 516 ++ .../stuwork/stuinnerleaveapplygroup/index.vue | 196 + src/views/stuwork/stuleaveapply/form.vue | 327 + src/views/stuwork/stuleaveapply/index.vue | 537 ++ src/views/stuwork/stupunlish/form.vue | 386 + src/views/stuwork/stupunlish/index.vue | 517 ++ src/views/stuwork/stutemleaveapply/form.vue | 338 + src/views/stuwork/stutemleaveapply/index.vue | 268 + src/views/stuwork/stuturnover/form.vue | 624 ++ src/views/stuwork/stuturnover/index.vue | 433 ++ src/views/stuwork/teachbuilding/form.vue | 128 + src/views/stuwork/teachbuilding/index.vue | 116 + src/views/stuwork/teachclassroom/batch.vue | 150 + src/views/stuwork/teachclassroom/form.vue | 195 + src/views/stuwork/teachclassroom/index.vue | 244 + 52 files changed, 13777 insertions(+), 1828 deletions(-) create mode 100644 src/api/asset/loading.ts create mode 100644 src/api/contract/contract.ts create mode 100644 src/api/finance/financenormalstu.ts create mode 100644 src/api/professional/teacherbase.ts create mode 100644 src/api/stuwork/classattendance.ts create mode 100644 src/api/stuwork/classleaveapply.ts create mode 100644 src/api/stuwork/classroombase.ts create mode 100644 src/api/stuwork/dormliveapply.ts create mode 100644 src/api/stuwork/stuinnerleaveapplygroup.ts create mode 100644 src/api/stuwork/stuleaveapply.ts create mode 100644 src/api/stuwork/stutemleaveapply.ts create mode 100644 src/api/stuwork/stuturnover.ts create mode 100644 src/api/stuwork/teachbuilding.ts create mode 100644 src/api/stuwork/teachclassroom.ts create mode 100644 src/config/global.ts delete mode 100644 src/views/recruit/recruitstudentsignupturnover/indexOld.vue create mode 100644 src/views/stuwork/classattendance/index.vue create mode 100644 src/views/stuwork/classleaveapply/detail.vue create mode 100644 src/views/stuwork/classleaveapply/form.vue create mode 100644 src/views/stuwork/classleaveapply/index.vue create mode 100644 src/views/stuwork/classroombase/arrange.vue create mode 100644 src/views/stuwork/classroombase/index.vue create mode 100644 src/views/stuwork/dormliveapply/form.vue create mode 100644 src/views/stuwork/dormliveapply/index.vue create mode 100644 src/views/stuwork/stuinnerleaveapplygroup/form.vue create mode 100644 src/views/stuwork/stuinnerleaveapplygroup/index.vue create mode 100644 src/views/stuwork/stuleaveapply/form.vue create mode 100644 src/views/stuwork/stuleaveapply/index.vue create mode 100644 src/views/stuwork/stupunlish/form.vue create mode 100644 src/views/stuwork/stupunlish/index.vue create mode 100644 src/views/stuwork/stutemleaveapply/form.vue create mode 100644 src/views/stuwork/stutemleaveapply/index.vue create mode 100644 src/views/stuwork/stuturnover/form.vue create mode 100644 src/views/stuwork/stuturnover/index.vue create mode 100644 src/views/stuwork/teachbuilding/form.vue create mode 100644 src/views/stuwork/teachbuilding/index.vue create mode 100644 src/views/stuwork/teachclassroom/batch.vue create mode 100644 src/views/stuwork/teachclassroom/form.vue create mode 100644 src/views/stuwork/teachclassroom/index.vue diff --git a/.env.development b/.env.development index f9ab5cb..cda5ee5 100644 --- a/.env.development +++ b/.env.development @@ -8,4 +8,4 @@ VITE_OPEN=true ENV=development # ADMIN 服务地址 -VITE_ADMIN_PROXY_PATH = http://localhost:9999 +VITE_ADMIN_PROXY_PATH = http://scj-v3.zhxy.link/api diff --git a/docs/默认模块.openapi.json b/docs/默认模块.openapi.json index 36e12a1..3d9987a 100644 --- a/docs/默认模块.openapi.json +++ b/docs/默认模块.openapi.json @@ -68,10 +68,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -134,10 +134,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -339,10 +339,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -455,10 +455,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -520,10 +520,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -725,10 +725,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -815,10 +815,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -892,10 +892,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1027,10 +1027,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1170,10 +1170,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1306,10 +1306,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1371,10 +1371,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1436,10 +1436,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1513,10 +1513,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1648,10 +1648,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1733,10 +1733,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -1843,10 +1843,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2050,10 +2050,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2190,10 +2190,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2271,10 +2271,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2352,10 +2352,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2432,10 +2432,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2513,10 +2513,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2593,10 +2593,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2658,10 +2658,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2723,10 +2723,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2859,10 +2859,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2924,10 +2924,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -2999,10 +2999,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3064,10 +3064,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3259,10 +3259,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3295,10 +3295,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3342,10 +3342,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3389,10 +3389,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3436,10 +3436,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3516,10 +3516,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3551,10 +3551,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3617,10 +3617,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3663,10 +3663,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3709,10 +3709,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3744,10 +3744,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3778,10 +3778,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3824,10 +3824,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3870,10 +3870,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3916,10 +3916,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -3962,10 +3962,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4122,10 +4122,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4258,10 +4258,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4294,10 +4294,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4342,10 +4342,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4404,10 +4404,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4470,10 +4470,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4564,10 +4564,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4619,10 +4619,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4685,10 +4685,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4751,10 +4751,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4877,10 +4877,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4942,10 +4942,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -4997,10 +4997,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5063,10 +5063,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5129,10 +5129,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5195,10 +5195,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5281,10 +5281,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5346,10 +5346,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5401,10 +5401,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5467,10 +5467,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5533,10 +5533,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5669,10 +5669,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5754,10 +5754,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5788,10 +5788,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5834,10 +5834,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5868,10 +5868,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -5936,10 +5936,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6001,10 +6001,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6036,10 +6036,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6072,10 +6072,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6107,10 +6107,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6142,10 +6142,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6187,10 +6187,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6222,10 +6222,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6267,10 +6267,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6302,10 +6302,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6357,10 +6357,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6432,10 +6432,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6507,10 +6507,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6562,10 +6562,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6627,10 +6627,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6704,10 +6704,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6790,10 +6790,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6844,10 +6844,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6888,6 +6888,71 @@ } }, "/api/stuwork/dormroom": { + "post": { + "summary": "新增", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"deptCode\": \"\",//二级学院编码\r\n \"buildingNo\": \"7\",//楼号\r\n \"roomNo\": \"1000000001\",//宿舍号\r\n \"bedNum\": \"6\",//几人间\r\n \"livedNum\": \"\",\r\n \"remarks\": \"测试\"//备注\r\n}" + } + } + }, + "responses": { + "500": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "timestamp": { + "type": "string" + }, + "status": { + "type": "integer" + }, + "error": { + "type": "string" + }, + "path": { + "type": "string" + } + }, + "required": [ + "timestamp", + "status", + "error", + "path" + ] + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/dormroom/edit": { "post": { "summary": "编辑", "deprecated": false, @@ -6898,10 +6963,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -6963,10 +7028,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7048,10 +7113,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7112,10 +7177,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7147,10 +7212,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7272,10 +7337,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7325,10 +7390,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7379,10 +7444,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7433,10 +7498,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7494,10 +7559,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7548,10 +7613,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7600,10 +7665,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7698,10 +7763,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7753,10 +7818,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7818,10 +7883,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7883,10 +7948,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -7960,10 +8025,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8121,10 +8186,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8176,10 +8241,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8241,10 +8306,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8306,10 +8371,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8383,10 +8448,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8469,10 +8534,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8594,10 +8659,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8649,10 +8714,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8714,10 +8779,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8779,10 +8844,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8856,10 +8921,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8942,10 +9007,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -8978,10 +9043,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9064,10 +9129,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9100,10 +9165,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9185,10 +9250,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9220,10 +9285,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9255,10 +9320,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9290,10 +9355,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9325,10 +9390,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9360,10 +9425,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9406,10 +9471,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9452,10 +9517,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9510,10 +9575,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9545,10 +9610,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9593,10 +9658,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9701,10 +9766,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9737,10 +9802,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9783,10 +9848,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9839,10 +9904,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9874,10 +9939,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9942,10 +10007,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -9978,10 +10043,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10024,10 +10089,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10093,10 +10158,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10178,10 +10243,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10316,10 +10381,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10453,10 +10518,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10601,10 +10666,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10761,10 +10826,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -10974,10 +11039,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -11112,10 +11177,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -11276,10 +11341,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -11435,10 +11500,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -11595,10 +11660,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -11813,10 +11878,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -11951,10 +12016,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -12099,10 +12164,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -12247,10 +12312,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -12395,10 +12460,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -12555,10 +12620,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -12768,10 +12833,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -12917,10 +12982,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13065,10 +13130,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13225,10 +13290,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13423,10 +13488,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13501,10 +13566,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13649,10 +13714,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13797,10 +13862,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -13957,10 +14022,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14036,10 +14101,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14071,10 +14136,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14106,10 +14171,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14273,10 +14338,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14433,10 +14498,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14640,10 +14705,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14778,10 +14843,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -14984,10 +15049,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15122,10 +15187,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15178,10 +15243,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15320,10 +15385,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15433,10 +15498,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15479,10 +15544,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15535,10 +15600,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15581,10 +15646,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15678,10 +15743,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15816,10 +15881,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15869,10 +15934,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15923,10 +15988,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -15981,10 +16046,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16167,10 +16232,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16305,10 +16370,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16358,10 +16423,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16412,10 +16477,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16470,10 +16535,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16607,10 +16672,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16727,10 +16792,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16865,10 +16930,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16911,10 +16976,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -16976,10 +17041,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17034,10 +17099,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17236,10 +17301,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17374,10 +17439,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17420,10 +17485,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17466,10 +17531,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17524,10 +17589,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17661,10 +17726,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17719,10 +17784,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -17921,10 +17986,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18059,10 +18124,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18105,10 +18170,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18151,10 +18216,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18263,10 +18328,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18321,10 +18386,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18533,10 +18598,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18671,10 +18736,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18717,10 +18782,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18763,10 +18828,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18876,10 +18941,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -18934,10 +18999,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19145,10 +19210,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19535,10 +19600,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19581,10 +19646,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19667,10 +19732,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19733,10 +19798,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19769,10 +19834,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -19827,10 +19892,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20039,10 +20104,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20177,10 +20242,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20223,10 +20288,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20269,10 +20334,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20327,10 +20392,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20529,10 +20594,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20667,10 +20732,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20713,10 +20778,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20759,10 +20824,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20860,10 +20925,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -20918,10 +20983,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21120,10 +21185,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21258,10 +21323,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21304,10 +21369,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21369,10 +21434,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21427,10 +21492,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21619,10 +21684,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21757,10 +21822,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21803,10 +21868,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21849,10 +21914,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -21907,10 +21972,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22074,10 +22139,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22212,10 +22277,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22258,10 +22323,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22304,10 +22369,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22405,10 +22470,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22440,10 +22505,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22498,10 +22563,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22665,10 +22730,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22803,10 +22868,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22849,10 +22914,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22895,10 +22960,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -22953,10 +23018,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23120,10 +23185,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23258,10 +23323,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23304,10 +23369,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23350,10 +23415,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23416,10 +23481,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23554,10 +23619,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23626,10 +23691,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23756,10 +23821,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -23860,10 +23925,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -24625,10 +24690,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -24681,10 +24746,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -24898,10 +24963,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -24944,10 +25009,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -24992,10 +25057,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -25758,10 +25823,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -25863,10 +25928,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -25909,10 +25974,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -25959,10 +26024,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -25994,10 +26059,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -26146,10 +26211,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -26296,10 +26361,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -26500,10 +26565,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -26695,10 +26760,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -26911,10 +26976,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27117,10 +27182,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27365,10 +27430,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27573,10 +27638,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27608,10 +27673,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27693,10 +27758,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27729,10 +27794,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27763,10 +27828,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27809,10 +27874,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -27924,10 +27989,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28062,10 +28127,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28121,10 +28186,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28258,10 +28323,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28304,10 +28369,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28350,10 +28415,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28395,10 +28460,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28520,10 +28585,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28614,10 +28679,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28670,10 +28735,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28764,10 +28829,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28810,10 +28875,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28858,10 +28923,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -28893,10 +28958,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29043,10 +29108,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29137,10 +29202,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29193,10 +29258,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29287,10 +29352,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29333,10 +29398,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29381,10 +29446,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29416,10 +29481,2973 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stupunlishreport/queryDataByPunlishId": { + "get": { + "summary": "思想报告列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "punlishId", + "in": "query", + "description": "", + "required": false, + "example": "cda705da4179d5dfd46154357a903a85", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": [\r\n {\r\n \"id\": \"f03b9ed784c06d2770df3fb608d0d897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 15:54:25\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"punlishId\": \"cda705da4179d5dfd46154357a903a85\",\r\n \"month\": \"2026-02\",//思想汇报月份\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-stu_punlish/0470200271.jpg\",//图片\r\n \"teacherReply\": null//班主任评语\r\n }\r\n ],\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stupunlishreport": { + "post": { + "summary": "新增思想报告", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": { + "punlishId": "cda705da4179d5dfd46154357a903a85", + "month": "2026-02", + "attachment": "/stuwork/minio/show?fileName=base-stu_punlish/0470200271.jpg" + } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stupunlishreport/edit": { + "post": { + "summary": "编辑思想报告", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"id\": \"f03b9ed784c06d2770df3fb608d0d897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 15:54:25\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"punlishId\": \"cda705da4179d5dfd46154357a903a85\",\r\n \"month\": \"2026-02\", //思想汇报月份\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-stu_punlish/0470200271.jpg\", //图片\r\n \"teacherReply\": null //班主任评语\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stupunlishreport/delete": { + "post": { + "summary": "删除思想报告", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": [ + "1" + ] + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stupunlish/cancelStatus": { + "post": { + "summary": "撤销处分", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"id\": \"9745cc5e828ea42bcc842f9aaec20c8c\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 15:28:06\",\r\n \"updateBy\": \"admin\",\r\n \"updateTime\": \"2026-01-14 15:34:19\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"151704254905\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"punlishStartDate\": \"2026-01-14 00:00:00\",\r\n \"punlishEndDate\": \"2026-01-22 00:00:00\",\r\n \"punlishLevel\": \"1\",\r\n \"punlishContent\": \"测试\",\r\n \"publishStatus\": \"0\",//更新为0即是撤销处分\r\n \"deptCode\": \"15\",\r\n \"deptName\": \"交通运输学院\",\r\n \"teacherNo\": \"00725\",\r\n \"teacherRealName\": \"管军\",\r\n \"stuRealName\": \"范子航\",\r\n \"classCode\": \"1517042549\",\r\n \"classNo\": \"2549\",\r\n \"isUnion\": \"0\"\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stutemleaveapply/page": { + "get": { + "summary": "列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "string" + } + }, + { + "name": "classCode", + "in": "query", + "description": "班级代码", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "deptCode", + "in": "query", + "description": "学院代码", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "stuNo", + "in": "query", + "description": "学号", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"7dbaf07eb41326eeaeca10ca0d38cd60\",\n \"createBy\": \"admin\",\n \"createTime\": \"2026-01-14 17:53:11\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"stuNo\": \"131711233445\",//学号\n \"schoolYear\": \"2025-2026\",//学年\n \"schoolTerm\": \"1\",//学期\n \"startTime\": \"2026-01-14 00:00:00\",//开始时间\n \"endTime\": \"2026-01-15 00:00:00\",//结束时间\n \"reason\": \"临时请假\",//原因\n \"deptCode\": \"13\",//学院代码\n \"classCode\": \"1317112334\",//班级代码\n \"realName\": \"刘珂成\",//姓名\n \"classTeach\": \"谈彦\",//班主任\n \"stuPhote\": \"133****0855\",//电话\n \"teacherNo\": \"00367\",//班主任工号\n \"classNo\": \"2334\",//班号\n \"deptName\": \"信息服务学院\"//学院编码\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stutemleaveapply/deleteData": { + "post": { + "summary": "删除", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": [ + "bdecc32ebbae97b05ff6592a079d1e74", + "787e2e5478e1b576a1a38283a669a5ec" + ] + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stutemleaveapply/detail": { + "get": { + "summary": "详情", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "id", + "in": "query", + "description": "", + "required": false, + "example": "d4c4fd9ebb8f9cc002bdb5056fb27e19", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stutemleaveapply": { + "post": { + "summary": "新增", + "deprecated": false, + "description": "(住宿舍角色才能新增如162301253534)", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"stuNo\": \"131711233445\"//学号\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stutemleaveapply/edit": { + "post": { + "summary": "编辑", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"id\": \"7dbaf07eb41326eeaeca10ca0d38cd60\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 17:53:11\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"131711233445\",//学号\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"startTime\": \"2026-01-14 00:00:00\",//开始时间\r\n \"endTime\": \"2026-01-15 00:00:00\",//结束时间\r\n \"reason\": \"临时请假\",//原因\r\n \"deptCode\": \"13\",//学院代码\r\n \"classCode\": \"1317112334\",//班级代码\r\n \"realName\": \"刘珂成\",//姓名\r\n \"classTeach\": \"谈彦\",//班主任\r\n \"stuPhote\": \"133****0855\",//电话\r\n \"teacherNo\": \"00367\",//班主任工号\r\n \"classNo\": \"2334\",//班号\r\n \"deptName\": \"信息服务学院\"//学院编码\r\n }" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/basic/basicstudent/queryStudentByLastStuNo": { + "get": { + "summary": "学生列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "stuNo", + "in": "query", + "description": "", + "required": false, + "example": "123344", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + } + } + }, + "security": [] + } + }, + "/api/admin/dict/type/leave_type": { + "get": { + "summary": "请假类型", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "dictId": { + "type": "string" + }, + "label": { + "type": "string" + }, + "dictType": { + "type": "string" + }, + "description": { + "type": "string" + }, + "sortOrder": { + "type": "integer" + }, + "createBy": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "remarks": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "value": { + "type": "string" + } + }, + "required": [ + "id", + "dictId", + "label", + "dictType", + "description", + "sortOrder", + "createBy", + "updateBy", + "createTime", + "updateTime", + "remarks", + "delFlag", + "value" + ] + } + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + } + } + } + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply/classDel": { + "post": { + "summary": "整班删除", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"classCode\": \"1517042549\"//班级代码\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply/batchPutObj": { + "post": { + "summary": "批量更岗修改", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "[\r\n {\r\n \"id\": \"b37bf0018888889d15c4c2979491699f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 18:05:12\",\r\n \"delFlag\": \"0\",\r\n \"classCode\": \"1512032546\",\r\n \"stuNo\": \"151203254602\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-15 00:00:00\",\r\n \"endTime\": \"2026-01-16 00:00:00\",\r\n \"leaveType\": \"3\",\r\n \"reason\": \"测试\",\r\n \"stayDorm\": \"0\",\r\n \"isSegment\": \"1\",\r\n \"segmentJson\": \"[{\\\"endTime\\\": \\\"18:04\\\", \\\"startTime\\\": \\\"17:03\\\"}, {\\\"endTime\\\": \\\"20:06\\\", \\\"startTime\\\": \\\"19:04\\\"}, {\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}]\",\r\n \"deptAudit\": \"0\",\r\n \"schoolAudit\": \"0\",\r\n \"deptCode\": \"15\",\r\n \"isGg\": \"0\",//更岗修改\r\n \"schoolDoor\": \"0\",\r\n \"realName\": \"梁梦涵\",\r\n \"leaveDays\": 0\r\n },\r\n {\r\n \"id\": \"0d5bfa5e07e23ce1f14db0cd9b111344\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 18:05:12\",\r\n \"delFlag\": \"0\",\r\n \"classCode\": \"1512032546\",\r\n \"stuNo\": \"151203254603\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-15 00:00:00\",\r\n \"endTime\": \"2026-01-16 00:00:00\",\r\n \"leaveType\": \"3\",\r\n \"reason\": \"测试\",\r\n \"stayDorm\": \"0\",\r\n \"isSegment\": \"1\",\r\n \"segmentJson\": \"[{\\\"endTime\\\": \\\"18:04\\\", \\\"startTime\\\": \\\"17:03\\\"}, {\\\"endTime\\\": \\\"20:06\\\", \\\"startTime\\\": \\\"19:04\\\"}, {\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}]\",\r\n \"deptAudit\": \"0\",\r\n \"schoolAudit\": \"0\",\r\n \"deptCode\": \"15\",\r\n \"isGg\": \"0\",\r\n \"schoolDoor\": \"0\",\r\n \"realName\": \"木雨晴\",\r\n \"leaveDays\": 0\r\n }\r\n]" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply/edit": { + "post": { + "summary": "编辑", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"id\": \"7dbaf07eb41326eeaeca10ca0d38cd60\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 17:53:11\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"131711233445\",//学号\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"startTime\": \"2026-01-14 00:00:00\",//开始时间\r\n \"endTime\": \"2026-01-15 00:00:00\",//结束时间\r\n \"reason\": \"临时请假\",//原因\r\n \"deptCode\": \"13\",//学院代码\r\n \"classCode\": \"1317112334\",//班级代码\r\n \"realName\": \"刘珂成\",//姓名\r\n \"classTeach\": \"谈彦\",//班主任\r\n \"stuPhote\": \"133****0855\",//电话\r\n \"teacherNo\": \"00367\",//班主任工号\r\n \"classNo\": \"2334\",//班号\r\n \"deptName\": \"信息服务学院\"//学院编码\r\n }" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply/page": { + "get": { + "summary": "列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "string" + } + }, + { + "name": "classCode", + "in": "query", + "description": "班级代码", + "required": false, + "example": [ + "" + ], + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "deptCode", + "in": "query", + "description": "学院代码", + "required": false, + "example": [ + "" + ], + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + }, + { + "name": "schoolYear", + "in": "query", + "description": "学年", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "schoolTerm", + "in": "query", + "description": "学期", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "leaveType", + "in": "query", + "description": "请假类型", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "schoolDoor", + "in": "query", + "description": "校门", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"5c0eaf77dc8bedfa71186f337020903a\",\n \"createBy\": \"admin\",\n \"createTime\": \"2025-04-28 15:09:28\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1617012458\",//班级代码\n \"stuNo\": \"141702245902\",//学号\n \"schoolYear\": \"2024-2025\",//学年\n \"schoolTerm\": \"2\",//学期\n \"startTime\": \"2025-05-01 00:00:00\",//开始时间\n \"endTime\": \"2025-05-13 00:00:00\",//结束时间\n \"leaveType\": \"3\",//请假类型\n \"reason\": \"去二期打工\",//请假原因\n \"stayDorm\": \"0\",\n \"isSegment\": \"0\",\n \"segmentJson\": \"[{\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}, {\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}, {\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}]\",\n \"deptAudit\": \"1\",\n \"schoolAudit\": \"2\",\n \"procInsId\": null,\n \"procInsStatus\": null,\n \"rejectReason\": \"\",\n \"deptCode\": \"14\",//学院代码\n \"isGg\": null,\n \"schoolDoor\": \"\",\n \"deptName\": \"医药康养学院\",\n \"classNo\": null,\n \"realName\": \"毕金涵\",\n \"teacherRealName\": \"谈丽\",//班主任\n \"segmentString\": \"\",\n \"timeDifference\": \"1036800\",\n \"num\": \"2\",//人数\n \"bedNO\": null,\n \"leaveDays\": 0,\n \"leaveNum\": null,\n \"roomNo\": null\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply/delete": { + "post": { + "summary": "删除", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": [ + "1" + ] + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply/lookDetails": { + "post": { + "summary": "详情", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": { + "id": "eee456e89c23efa10ca53cd9c5dd46d4", + "createBy": "admin", + "createTime": "2025-03-24 13:54:08", + "delFlag": "0", + "classCode": "1417022459", + "stuNo": "152304235542", + "schoolYear": "2024-2025", + "schoolTerm": "1", + "startTime": "2025-03-23 00:00:00", + "endTime": "2025-06-30 00:00:00", + "leaveType": "3", + "reason": "111", + "stayDorm": "0", + "isSegment": "0", + "segmentJson": "[{\"endTime\": \"\", \"startTime\": \"\"}, {\"endTime\": \"\", \"startTime\": \"\"}, {\"endTime\": \"\", \"startTime\": \"\"}]", + "deptAudit": "0", + "schoolAudit": "0", + "deptCode": "15", + "schoolDoor": "1", + "deptName": "交通运输学院", + "realName": "臧雨川", + "teacherRealName": "冷静燕", + "segmentString": "", + "timeDifference": "8553600", + "num": "1", + "leaveDays": 0 + } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": [\r\n {\r\n \"id\": \"eee456e89c23efa10ca53cd9c5dd46d4\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-03-24 13:54:08\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1417022459\",\r\n \"stuNo\": \"152304235542\",//学号\r\n \"schoolYear\": \"2024-2025\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2025-03-23 00:00:00\",\r\n \"endTime\": \"2025-06-30 00:00:00\",\r\n \"leaveType\": \"3\",\r\n \"reason\": \"111\",\r\n \"stayDorm\": \"0\",\r\n \"isSegment\": \"0\",\r\n \"segmentJson\": \"[{\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}, {\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}, {\\\"endTime\\\": \\\"\\\", \\\"startTime\\\": \\\"\\\"}]\",\r\n \"deptAudit\": \"0\",\r\n \"schoolAudit\": \"0\",\r\n \"procInsId\": null,\r\n \"procInsStatus\": null,\r\n \"rejectReason\": null,\r\n \"deptCode\": \"14\",//学院代码\r\n \"isGg\": \"0\",\r\n \"schoolDoor\": \"1\",\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"realName\": \"臧雨川\",//姓名\r\n \"teacherRealName\": null,\r\n \"segmentString\": null,\r\n \"timeDifference\": null,\r\n \"num\": null,\r\n \"bedNO\": null,\r\n \"leaveDays\": 0,\r\n \"leaveNum\": null,\r\n \"roomNo\": \"4327\"//宿舍号\r\n }\r\n ],\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/classleaveapply": { + "post": { + "summary": "新增", + "deprecated": false, + "description": "(住宿舍角色才能新增如162301253534)", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": { + "schoolYear": "2025-2026", + "schoolTerm": "1", + "classCode": "1512032546", + "studentDataList": [ + { + "stuNo": "151203254601", + "realName": "崔可欣" + }, + { + "stuNo": "151203254602", + "realName": "梁梦涵" + }, + { + "stuNo": "151203254603", + "realName": "木雨晴" + } + ], + "startTime": "2026-01-15 00:00:00", + "endTime": "2026-01-16 00:00:00", + "leaveTime": [ + "2026-01-15 00:00:00", + "2026-01-16 00:00:00" + ], + "leaveType": "3", + "reason": "测试", + "isSegment": "1", + "segmentList": [ + { + "startTime": "17:03", + "endTime": "18:04" + }, + { + "startTime": "19:04", + "endTime": "20:06" + }, + { + "startTime": "", + "endTime": "" + } + ], + "deptAudit": "0", + "schoolAudit": "0", + "isGg": "1", + "schoolDoor": "0" + } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/stuleaveapply/page": { + "get": { + "summary": "列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "string" + } + }, + { + "name": "deptCode", + "in": "query", + "description": "", + "required": false, + "example": "11", + "schema": { + "type": "string" + } + }, + { + "name": "classCode", + "in": "query", + "description": "", + "required": false, + "example": "1517042549", + "schema": { + "type": "string" + } + }, + { + "name": "realName", + "in": "query", + "description": "", + "required": false, + "example": "111", + "schema": { + "type": "string" + } + }, + { + "name": "leaveType", + "in": "query", + "description": "", + "required": false, + "example": "3", + "schema": { + "type": "string" + } + }, + { + "name": "goOrStay", + "in": "query", + "description": "", + "required": false, + "example": "0", + "schema": { + "type": "string" + } + }, + { + "name": "stayDorm", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "classAudit", + "in": "query", + "description": "", + "required": false, + "example": "0", + "schema": { + "type": "string" + } + }, + { + "name": "deptAudit", + "in": "query", + "description": "", + "required": false, + "example": "0", + "schema": { + "type": "string" + } + }, + { + "name": "schoolAudit", + "in": "query", + "description": "", + "required": false, + "example": "0", + "schema": { + "type": "string" + } + }, + { + "name": "schoolYear", + "in": "query", + "description": "", + "required": false, + "example": "2025-2026", + "schema": { + "type": "string" + } + }, + { + "name": "schoolTerm", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + } + } + }, + "security": [] + } + }, + "/api/stuwork/stuleaveapply": { + "post": { + "summary": "班主任替学生请假", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"schoolYear\": \"\",\r\n \"schoolTerm\": \"\",\r\n \"deptCode\": \"\",\r\n \"classCode\": \"1123022508\",//班级代码\r\n \"classNo\": \"\",\r\n \"realName\": \"\",\r\n \"stuNo\": \"112301250731\",//学号\r\n \"startTime\": \"2026-01-14 00:00:00\",//开始时间\r\n \"leaveTime\": [\r\n \"2026-01-14 00:00:00\",\r\n \"2026-02-24 00:00:00\"\r\n ],//请假日期\r\n \"endTime\": \"2026-02-24 00:00:00\",//结束时间\r\n \"leaveType\": \"3\",//请假类型\r\n \"reason\": \"测试\",//请假原因\r\n \"stayDorm\": \"1\",//是否住宿\r\n \"isFever\": \"1\"//是否发热\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/cancel": { + "post": { + "summary": "班主任替学生撤销请假", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"schoolYear\": \"\",\r\n \"schoolTerm\": \"\",\r\n \"deptCode\": \"\",\r\n \"classCode\": \"1123022508\",//班级代码\r\n \"classNo\": \"\",\r\n \"realName\": \"\",\r\n \"stuNo\": \"112301250731\",//学号\r\n \"startTime\": \"2026-01-14 00:00:00\",//开始时间\r\n \"leaveTime\": [\r\n \"2026-01-14 00:00:00\",\r\n \"2026-02-24 00:00:00\"\r\n ],//请假日期\r\n \"endTime\": \"2026-02-24 00:00:00\",//结束时间\r\n \"leaveType\": \"3\",//请假类型\r\n \"reason\": \"测试\",//请假原因\r\n \"stayDorm\": \"1\",//是否住宿\r\n \"isFever\": \"1\"//是否发热\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachbuilding/page": { + "get": { + "summary": "列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"2bb6713f-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"2号楼\",//备注\r\n \"buildingNo\": 2//楼号\r\n },\r\n {\r\n \"id\": \"2bb6714a-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"4号楼\",\r\n \"buildingNo\": 4\r\n },\r\n {\r\n \"id\": \"2bb67154-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"7号楼\",\r\n \"buildingNo\": 7\r\n },\r\n {\r\n \"id\": \"2bb6715e-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"9号楼\",\r\n \"buildingNo\": 9\r\n },\r\n {\r\n \"id\": \"6477314e5c4835d7e7f686899af63c57\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2022-09-07 20:42:08\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"11号楼\",\r\n \"buildingNo\": 11\r\n },\r\n {\r\n \"id\": \"2bb67109-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"12号楼\",\r\n \"buildingNo\": 12\r\n },\r\n {\r\n \"id\": \"2bb67129-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"14号楼\",\r\n \"buildingNo\": 14\r\n },\r\n {\r\n \"id\": \"2bb67135-8411-11eb-a06b-0242ac130002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:24\",\r\n \"updateBy\": \"1\",\r\n \"updateTime\": \"2021-03-13 22:31:24\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"15号楼\",\r\n \"buildingNo\": 15\r\n }\r\n ],\r\n \"total\": 8,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachbuilding": { + "post": { + "summary": "新增", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"buildingNo\": 100,//楼号\r\n \"remarks\": \"测试100号楼\"//备注\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachbuilding/edit": { + "post": { + "summary": "编辑", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": { + "id": "4a77cfd024ceef57841c2d2fcd1232e9", + "createBy": "admin", + "createTime": "2026-01-15 09:50:41", + "updateBy": null, + "updateTime": null, + "delFlag": "0", + "tenantId": null, + "remarks": "测试100号楼", + "buildingNo": 100 + } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachbuilding/delete": { + "post": { + "summary": "删除", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": [ + "4a77cfd024ceef57841c2d2fcd1232e9" + ] + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachbuilding/detail": { + "get": { + "summary": "详情", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "id", + "in": "query", + "description": "", + "required": false, + "example": "4a77cfd024ceef57841c2d2fcd1232e9", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"id\": \"4a77cfd024ceef57841c2d2fcd1232e9\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-15 09:50:41\",\r\n \"updateBy\": \"admin\",\r\n \"updateTime\": \"2026-01-15 09:53:57\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试100号楼\",//备注\r\n \"buildingNo\": 100//楼号\r\n \r\n },\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachbuilding/list": { + "get": { + "summary": "所有楼号", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachclassroom/page": { + "get": { + "summary": "列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "string" + } + }, + { + "name": "deptCode", + "in": "query", + "description": "学院代码", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "buildingNo", + "in": "query", + "description": "楼号", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"ab595ad96eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:30:07\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,//楼号\r\n \"position\": \"12-301/303\",//教室位置\r\n \"deptCode\": \"16\"//学院\r\n },\r\n {\r\n \"id\": \"a5a49a9c6eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:30:13\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-302/304\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"b550c4cf6eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:30:19\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-305/307\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"b0124ada6eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:30:26\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-306/308\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"be641a146eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:30:38\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-309/311\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"b989d5786eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:05\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-310/312\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"c2dd4ec76eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:13\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-313/315\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"c6fedc4a6eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:20\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-317/319\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"cf22f3876eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:25\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-321/323\",\r\n \"deptCode\": \"16\"\r\n },\r\n {\r\n \"id\": \"d69bd4116eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:37\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,\r\n \"position\": \"12-401/403\",\r\n \"deptCode\": \"16\"\r\n }\r\n ],\r\n \"total\": 236,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 24\r\n },\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachclassroom": { + "post": { + "summary": "新增", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"buildingNo\": 12, //楼号\r\n \"position\": \"12-301/304\", //教室位置\r\n \"deptCode\": \"16\" //学院\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachclassroom/edit": { + "post": { + "summary": "编辑", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"id\": \"cf22f3876eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:25\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"buildingNo\": 12,//楼号\r\n \"position\": \"12-321/323\", //位置\r\n \"deptCode\": \"16\"//学院代码\r\n}" + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachclassroom/delete": { + "post": { + "summary": "删除", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": [ + "254fb5d36d5870656510d40732220526" + ] + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachclassroom/detail": { + "get": { + "summary": "详情", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "id", + "in": "query", + "description": "", + "required": false, + "example": "cf22f3876eee11e88d210242ac110002", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "integer" + }, + "msg": { + "type": "null" + }, + "data": { + "type": "object", + "properties": { + "records": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "createBy": { + "type": "string" + }, + "createTime": { + "type": "string" + }, + "updateBy": { + "type": "string" + }, + "updateTime": { + "type": "string" + }, + "delFlag": { + "type": "string" + }, + "tenantId": { + "type": "integer" + }, + "remarks": { + "type": "string" + }, + "schoolYear": { + "type": "string" + }, + "schoolTerm": { + "type": "string" + }, + "title": { + "type": "string" + }, + "content": { + "type": "string" + }, + "author": { + "type": "string" + } + }, + "required": [ + "id", + "createBy", + "createTime", + "updateBy", + "updateTime", + "delFlag", + "tenantId", + "remarks", + "schoolYear", + "schoolTerm", + "title", + "content", + "author" + ] + } + }, + "total": { + "type": "integer" + }, + "size": { + "type": "integer" + }, + "current": { + "type": "integer" + }, + "pages": { + "type": "integer" + } + }, + "required": [ + "records", + "total", + "size", + "current", + "pages" + ] + }, + "ok": { + "type": "boolean" + } + }, + "required": [ + "code", + "msg", + "data", + "ok" + ] + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"id\": \"4a77cfd024ceef57841c2d2fcd1232e9\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-15 09:50:41\",\r\n \"updateBy\": \"admin\",\r\n \"updateTime\": \"2026-01-15 09:53:57\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试100号楼\",//备注\r\n \"buildingNo\": 100//楼号\r\n \r\n },\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/stuwork/teachclassroom/fetchClassRoomBaseList": { + "get": { + "summary": "列表", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "string" + } + }, + { + "name": "deptName", + "in": "query", + "description": "学院名称", + "required": false, + "example": "", + "schema": { + "type": "string" + } + }, + { + "name": "classCode", + "in": "query", + "description": "班级代码", + "required": false, + "example": "1532012146", + "schema": { + "type": "string" + } + }, + { + "name": "classStatus", + "in": "query", + "description": "班级状态", + "required": false, + "example": "0", + "schema": { + "type": "string" + } + }, + { + "name": "position", + "in": "query", + "description": "教室位置", + "required": false, + "example": "1", + "schema": { + "type": "string" + } + }, + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + }, + "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"classAssetsVOList\": [\r\n {\r\n \"id\": null,\r\n \"createBy\": null,\r\n \"createTime\": null,\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"ceilingFanOkCnt\": null,\r\n \"ceilingFanErrorCnt\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null,\r\n \"deptName\": null,\r\n \"classCodes\": null,\r\n \"position\": null,\r\n \"buildingNo\": null,\r\n \"stuNum\": 10192,//在校学生人数\r\n \"classNum\": 250,//在校班级数\r\n \"teacherRealName\": null,\r\n \"ptjtNums\": 4,//普通讲台数\r\n \"dmtjtNums\": 3,//多媒体讲台\r\n \"dmtkzqjtNums\": 12,//多媒体讲台有控制器\r\n \"wtyNums\": 5,//无投影\r\n \"apstyNums\": 13,//爱普生投影\r\n \"qttyNums\": 1,//其他投影\r\n \"wtvNums\": 1,//无电视\r\n \"xptvNums\": 9,//小屏电视\r\n \"dptvNums\": 9,//大屏电视\r\n \"chairCntNums\": 770,//凳子\r\n \"tableCntNums\": 768//课桌\r\n }\r\n ],\r\n \"ipage\": {\r\n \"records\": [\r\n {\r\n \"id\": \"d2f1228c6eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:31:44\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,//楼号\r\n \"position\": \"12-402/404\",//教室位置\r\n \"deptCode\": \"16\",//学院编码\r\n \"classCode\": null,\r\n \"deptName\": \"新能源学院\",//学院\r\n \"classNo\": null,//班号\r\n \"classStatus\": null,//班级状态\r\n \"stuNum\": null,//人数\r\n \"teacherRealName\": null,//班主任\r\n \"platformType\": null,//讲台类型\r\n \"tyType\": null,//投影类型\r\n \"tvType\": null,//电视机\r\n \"chairCnt\": null,//方凳数量\r\n \"tableCnt\": null,//课桌数量\r\n \"password\": null//门锁密码\r\n },\r\n {\r\n \"id\": \"e850a0c66eee11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:32:02\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-410/412\",\r\n \"deptCode\": \"16\",\r\n \"classCode\": null,\r\n \"deptName\": \"新能源学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"e56de96bd91541aaba564fa76b789a84\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-06-27 07:32:13\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-414/416\",\r\n \"deptCode\": \"16\",\r\n \"classCode\": null,\r\n \"deptName\": \"新能源学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"155951dc6eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00182\",\r\n \"updateTime\": \"2024-08-31 13:34:53\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-501/503\",\r\n \"deptCode\": \"13\",\r\n \"classCode\": null,\r\n \"deptName\": \"信息服务学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"1c9dc6da6eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00182\",\r\n \"updateTime\": \"2024-08-31 13:34:53\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-505/507\",\r\n \"deptCode\": \"13\",\r\n \"classCode\": null,\r\n \"deptName\": \"信息服务学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"240368976eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00182\",\r\n \"updateTime\": \"2024-08-31 13:34:53\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-510/512\",\r\n \"deptCode\": \"13\",\r\n \"classCode\": null,\r\n \"deptName\": \"信息服务学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"2eae13866eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00182\",\r\n \"updateTime\": \"2024-08-31 13:34:53\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-513/515\",\r\n \"deptCode\": \"13\",\r\n \"classCode\": null,\r\n \"deptName\": \"信息服务学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"2ba7b12f6eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00063\",\r\n \"updateTime\": \"2024-10-14 10:59:59\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-514/516\",\r\n \"deptCode\": \"16\",\r\n \"classCode\": null,\r\n \"deptName\": \"新能源学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"323531c06eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00182\",\r\n \"updateTime\": \"2024-08-31 13:34:53\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-517/519\",\r\n \"deptCode\": \"13\",\r\n \"classCode\": null,\r\n \"deptName\": \"信息服务学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n },\r\n {\r\n \"id\": \"3532a7436eef11e88d210242ac110002\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:31:37\",\r\n \"updateBy\": \"00182\",\r\n \"updateTime\": \"2024-08-31 13:34:53\",\r\n \"delFlag\": null,\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": 12,\r\n \"position\": \"12-521/523\",\r\n \"deptCode\": \"13\",\r\n \"classCode\": null,\r\n \"deptName\": \"信息服务学院\",\r\n \"classNo\": null,\r\n \"classStatus\": null,\r\n \"stuNum\": null,\r\n \"teacherRealName\": null,\r\n \"platformType\": null,\r\n \"tyType\": null,\r\n \"tvType\": null,\r\n \"chairCnt\": null,\r\n \"tableCnt\": null,\r\n \"password\": null\r\n }\r\n ],\r\n \"total\": 236,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 24\r\n }\r\n },\r\n \"ok\": true\r\n}" + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/admin/dict/type/platform_type": { + "get": { + "summary": "讲台类型", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/admin/dict/type/ty_type": { + "get": { + "summary": "投影类型", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" + } + } + ], + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": {} + } + } + }, + "headers": {} + } + }, + "security": [] + } + }, + "/api/admin/dict/type/tv_type": { + "get": { + "summary": "电视类型", + "deprecated": false, + "description": "", + "tags": [], + "parameters": [ + { + "name": "Authorization", + "in": "header", + "description": "", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", + "schema": { + "type": "string", + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29451,10 +32479,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29564,10 +32592,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29677,10 +32705,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29790,10 +32818,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -29903,10 +32931,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30016,10 +33044,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30129,10 +33157,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30242,10 +33270,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30355,10 +33383,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30468,10 +33496,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30581,10 +33609,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30694,10 +33722,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -30817,10 +33845,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -31471,10 +34499,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -31606,10 +34634,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -31732,10 +34760,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -31868,10 +34896,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -31941,10 +34969,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -32077,10 +35105,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -32257,10 +35285,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -32383,10 +35411,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -32563,10 +35591,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -32699,10 +35727,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -33273,10 +36301,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -33390,10 +36418,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -33489,10 +36517,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -33912,10 +36940,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -34029,10 +37057,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -34155,10 +37183,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -34291,10 +37319,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -34845,10 +37873,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -35409,10 +38437,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -35535,10 +38563,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -35607,10 +38635,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -35724,10 +38752,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -36234,10 +39262,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -36297,10 +39325,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -36871,10 +39899,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -36934,10 +39962,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37060,10 +40088,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37195,10 +40223,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37287,10 +40315,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37404,10 +40432,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37521,10 +40549,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37638,10 +40666,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -37746,10 +40774,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -38239,10 +41267,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -38986,10 +42014,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -39094,10 +42122,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -39230,10 +42258,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -39755,10 +42783,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -39872,10 +42900,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -39980,10 +43008,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -40106,10 +43134,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -40622,10 +43650,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -40731,10 +43759,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -41224,10 +44252,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -41936,10 +44964,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -42085,10 +45113,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -42611,10 +45639,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -42757,10 +45785,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -43246,10 +46274,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -43394,10 +46422,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -43920,10 +46948,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -44122,10 +47150,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -44277,10 +47305,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -44412,10 +47440,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -44548,10 +47576,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -44727,10 +47755,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -44872,10 +47900,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -45456,10 +48484,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -45581,10 +48609,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -45630,10 +48658,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -45679,10 +48707,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -45912,10 +48940,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -46047,10 +49075,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -46173,10 +49201,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -46309,10 +49337,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -46445,10 +49473,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -46581,10 +49609,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -46882,10 +49910,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -47017,10 +50045,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -47143,10 +50171,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -47279,10 +50307,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -47415,10 +50443,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -47551,10 +50579,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -47870,10 +50898,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48005,10 +51033,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48131,10 +51159,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48267,10 +51295,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48403,10 +51431,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48539,10 +51567,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48858,10 +51886,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -48993,10 +52021,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -49119,10 +52147,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -49255,10 +52283,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -49391,10 +52419,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -49527,10 +52555,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -49653,10 +52681,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -49789,10 +52817,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -50118,10 +53146,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -50253,10 +53281,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -50379,10 +53407,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -50515,10 +53543,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -50651,10 +53679,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -50787,10 +53815,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -51106,10 +54134,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -51241,10 +54269,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -51367,10 +54395,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -51503,10 +54531,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -51639,10 +54667,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -51775,10 +54803,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -52160,10 +55188,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -52545,10 +55573,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -52680,10 +55708,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -52806,10 +55834,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -52942,10 +55970,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53078,10 +56106,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53214,10 +56242,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53507,10 +56535,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53642,10 +56670,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53768,10 +56796,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53904,10 +56932,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -53977,10 +57005,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -54086,10 +57114,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -54634,10 +57662,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -55172,10 +58200,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -55307,10 +58335,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -55433,10 +58461,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -55569,10 +58597,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -55705,10 +58733,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -55841,10 +58869,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -56134,10 +59162,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -56269,10 +59297,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -56395,10 +59423,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -56531,10 +59559,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -56640,10 +59668,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -56713,10 +59741,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -57087,10 +60115,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -57222,10 +60250,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -57348,10 +60376,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -57484,10 +60512,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -57620,10 +60648,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -57949,10 +60977,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -58084,10 +61112,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -58210,10 +61238,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -58346,10 +61374,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -58482,10 +61510,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -58618,10 +61646,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -58901,10 +61929,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59036,10 +62064,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59162,10 +62190,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59298,10 +62326,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59407,10 +62435,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59480,10 +62508,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59625,10 +62653,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59845,10 +62873,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -59971,10 +62999,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60080,10 +63108,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60153,10 +63181,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60262,10 +63290,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60591,10 +63619,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60726,10 +63754,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60852,10 +63880,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -60988,10 +64016,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61124,10 +64152,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61417,10 +64445,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61552,10 +64580,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61615,10 +64643,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61751,10 +64779,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61785,10 +64813,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61858,10 +64886,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61940,10 +64968,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -61974,10 +65002,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -62217,10 +65245,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -62352,10 +65380,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -62478,10 +65506,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -62614,10 +65642,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -62750,10 +65778,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -62886,10 +65914,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -63021,10 +66049,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -63237,10 +66265,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -63556,10 +66584,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -63691,10 +66719,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -63817,10 +66845,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -63953,10 +66981,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -64089,10 +67117,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -64225,10 +67253,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -64544,10 +67572,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -64679,10 +67707,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -64805,10 +67833,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -64941,10 +67969,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -65077,10 +68105,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -65213,10 +68241,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -65532,10 +68560,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -65667,10 +68695,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -65793,10 +68821,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -65929,10 +68957,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -66065,10 +69093,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -66201,10 +69229,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -66520,10 +69548,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -66655,10 +69683,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -66781,10 +69809,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -66917,10 +69945,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -67053,10 +70081,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -67189,10 +70217,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -67508,10 +70536,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -67643,10 +70671,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -67769,10 +70797,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -67905,10 +70933,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -68041,10 +71069,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -68177,10 +71205,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -68670,10 +71698,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -68796,10 +71824,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -69299,10 +72327,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -69434,10 +72462,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -69560,10 +72588,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -69696,10 +72724,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -69832,10 +72860,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -69968,10 +72996,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -70453,10 +73481,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -70588,10 +73616,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -70714,10 +73742,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -70850,10 +73878,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -70986,10 +74014,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -71122,10 +74150,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -71517,10 +74545,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -71902,10 +74930,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72037,10 +75065,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72163,10 +75191,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72299,10 +75327,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72435,10 +75463,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72571,10 +75599,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72707,10 +75735,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -72842,10 +75870,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -73161,10 +76189,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -73296,10 +76324,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -73422,10 +76450,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -73558,10 +76586,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -73694,10 +76722,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -73830,10 +76858,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -74212,10 +77240,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -74594,10 +77622,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -74729,10 +77757,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -74855,10 +77883,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -74991,10 +78019,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -75127,10 +78155,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -75263,10 +78291,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -75592,10 +78620,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -75727,10 +78755,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -75853,10 +78881,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -75989,10 +79017,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -76125,10 +79153,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -76261,10 +79289,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -76580,10 +79608,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -76715,10 +79743,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -76841,10 +79869,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -76977,10 +80005,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -77113,10 +80141,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -77249,10 +80277,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -77532,10 +80560,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -77667,10 +80695,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -77793,10 +80821,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -77929,10 +80957,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78038,10 +81066,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78111,10 +81139,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78440,10 +81468,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78480,10 +81508,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78539,10 +81567,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78736,10 +81764,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78776,10 +81804,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78826,10 +81854,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -78876,10 +81904,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -79113,10 +82141,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -79221,10 +82249,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -79320,10 +82348,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -79429,10 +82457,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -79538,10 +82566,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -79647,10 +82675,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80002,10 +83030,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80092,10 +83120,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80182,10 +83210,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80263,10 +83291,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80352,10 +83380,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80443,10 +83471,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80543,10 +83571,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80624,10 +83652,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80692,10 +83720,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -80735,10 +83763,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81052,10 +84080,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81142,10 +84170,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81223,10 +84251,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81314,10 +84342,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81405,10 +84433,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81496,10 +84524,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81587,10 +84615,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81678,10 +84706,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81773,10 +84801,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -81972,10 +85000,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82062,10 +85090,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82143,10 +85171,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82243,10 +85271,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82442,10 +85470,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82632,10 +85660,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82723,10 +85751,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82814,10 +85842,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82904,10 +85932,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -82994,10 +86022,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83084,10 +86112,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83174,10 +86202,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83249,10 +86277,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83384,10 +86412,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83587,10 +86615,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83790,10 +86818,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -83990,10 +87018,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -84190,10 +87218,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -84402,10 +87430,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -84582,10 +87610,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -84794,10 +87822,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -84984,10 +88012,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85065,10 +88093,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85439,10 +88467,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85520,10 +88548,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85611,10 +88639,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85702,10 +88730,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85793,10 +88821,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -85884,10 +88912,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86180,10 +89208,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86270,10 +89298,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86358,10 +89386,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86439,10 +89467,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86528,10 +89556,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86619,10 +89647,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86705,10 +89733,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86860,10 +89888,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -86941,10 +89969,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87032,10 +90060,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87370,10 +90398,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87460,10 +90488,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87541,10 +90569,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87632,10 +90660,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87723,10 +90751,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -87958,10 +90986,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88039,10 +91067,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88220,10 +91248,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88391,10 +91419,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88472,10 +91500,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88558,10 +91586,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88644,10 +91672,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88739,10 +91767,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88820,10 +91848,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88864,10 +91892,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -88939,10 +91967,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -90635,10 +93663,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -90716,10 +93744,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -90807,10 +93835,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -90898,10 +93926,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -90989,10 +94017,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -92695,10 +95723,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -92776,10 +95804,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -92867,10 +95895,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -92958,10 +95986,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -93049,10 +96077,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -93149,10 +96177,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -93230,10 +96258,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -93321,10 +96349,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -94451,10 +97479,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -95571,10 +98599,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -96691,10 +99719,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -96781,10 +99809,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -96869,10 +99897,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -96950,10 +99978,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97039,10 +100067,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97130,10 +100158,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97221,10 +100249,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97312,10 +100340,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97403,10 +100431,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97447,10 +100475,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97538,10 +100566,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97629,10 +100657,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -97720,10 +100748,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98067,10 +101095,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98148,10 +101176,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98164,11 +101192,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98188,10 +101239,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98214,11 +101265,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98238,10 +101312,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98264,11 +101338,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98288,10 +101385,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98314,11 +101411,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98612,10 +101732,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98628,11 +101748,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98661,10 +101804,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98677,11 +101820,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98701,10 +101867,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98727,11 +101893,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98751,10 +101940,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98777,11 +101966,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98801,10 +102013,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98827,11 +102039,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98870,10 +102105,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98905,11 +102140,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -98938,10 +102196,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -98954,11 +102212,34 @@ "$ref": "#/components/schemas/R", "description": "响应信息主体" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -99162,10 +102443,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99178,11 +102459,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -99211,10 +102515,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99227,11 +102531,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -99251,10 +102578,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99277,11 +102604,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -99301,10 +102651,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99327,11 +102677,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -99351,10 +102724,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99377,11 +102750,34 @@ "$ref": "#/components/schemas/R", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + } } } } @@ -99394,112 +102790,9 @@ "get": { "summary": "分页查询", "deprecated": false, - "description": "", + "description": "分页查询\n分页查询\n分页查询招标代理表", "tags": [], "parameters": [ - { - "name": "records[0].key", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "" - } - }, - { - "name": "total", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "size", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "current", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "orders[0].column", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "string" - } - }, - { - "name": "orders[0].asc", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "boolean" - } - }, - { - "name": "optimizeCountSql", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "boolean" - } - }, - { - "name": "searchCount", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "boolean" - } - }, - { - "name": "optimizeJoinOfCountSql", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "boolean" - } - }, - { - "name": "maxLimit", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "countId", - "in": "query", - "description": "", - "required": false, - "schema": { - "type": "string" - } - }, { "name": "id", "in": "query", @@ -99572,14 +102865,34 @@ "type": "string" } }, + { + "name": "current", + "in": "query", + "description": "", + "required": false, + "example": "1", + "schema": { + "type": "" + } + }, + { + "name": "size", + "in": "query", + "description": "", + "required": false, + "example": "10", + "schema": { + "type": "" + } + }, { "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99589,14 +102902,40 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/R", - "description": "R" + "$ref": "#/components/schemas/RPagePurchasingAgent", + "description": "R>" }, "example": { - "ok": false, - "code": null, + "code": 0, "msg": "", - "data": {} + "data": { + "records": [ + { + "id": "", + "createBy": "", + "createTime": "", + "updateBy": "", + "updateTime": "", + "delFlag": "", + "remark": "", + "agentName": "" + } + ], + "total": 0, + "size": 0, + "current": 0, + "orders": [ + { + "column": "", + "asc": false + } + ], + "optimizeCountSql": false, + "searchCount": false, + "optimizeJoinOfCountSql": false, + "maxLimit": 0, + "countId": "" + } } } } @@ -99625,10 +102964,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99638,14 +102977,45 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/R", + "$ref": "#/components/schemas/RPurchasingAgent", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "code": 0, + "msg": "", + "data": { + "id": "", + "createBy": "", + "createTime": "", + "updateBy": "", + "updateTime": "", + "delFlag": "", + "remark": "", + "agentName": "" + } + } + } } } } @@ -99665,10 +103035,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99688,14 +103058,36 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/R", + "$ref": "#/components/schemas/RBoolean", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "code": 0, + "msg": "", + "data": false + } + } } } } @@ -99715,10 +103107,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99738,14 +103130,36 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/R", + "$ref": "#/components/schemas/RBoolean", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "code": 0, + "msg": "", + "data": false + } + } } } } @@ -99765,10 +103179,10 @@ "name": "Authorization", "in": "header", "description": "", - "example": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c", + "example": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", - "default": "Bearer 39524a6d-e845-486e-a057-dd5728fd8d2c" + "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], @@ -99788,14 +103202,36 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/R", + "$ref": "#/components/schemas/RBoolean", "description": "R" }, - "example": { - "ok": false, - "code": null, - "msg": "", - "data": {} + "examples": { + "1": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "2": { + "summary": "成功示例", + "value": { + "ok": false, + "code": null, + "msg": "", + "data": {} + } + }, + "3": { + "summary": "成功示例", + "value": { + "code": 0, + "msg": "", + "data": false + } + } } } } @@ -100078,7 +103514,8 @@ "description": "返回消息" }, "data": { - "$ref": "#/components/schemas/PurchasingAgent" + "$ref": "#/components/schemas/PurchasingAgent", + "description": "数据" } } }, @@ -100227,7 +103664,8 @@ "description": "返回消息" }, "data": { - "$ref": "#/components/schemas/PagePurchasingAgent" + "$ref": "#/components/schemas/PagePurchasingAgent", + "description": "数据" } } }, @@ -100455,32 +103893,61 @@ }, "PagePurchasingAgent": { "type": "object", - "description": "分页结果", "properties": { "records": { "type": "array", - "description": "数据列表", "items": { - "$ref": "#/components/schemas/PurchasingAgent" - } + "$ref": "#/components/schemas/PurchasingAgent", + "description": "招标代理表" + }, + "description": "数据列表" }, "total": { "type": "integer", - "description": "总记录数" + "description": "总记录数", + "format": "int64" }, "size": { "type": "integer", - "description": "每页大小" + "description": "每页大小", + "format": "int64" }, "current": { "type": "integer", - "description": "当前页" + "description": "当前页", + "format": "int64" }, - "pages": { + "orders": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OrderItem", + "description": "com.baomidou.mybatisplus.core.metadata.OrderItem" + }, + "description": "" + }, + "optimizeCountSql": { + "type": "boolean", + "description": "" + }, + "searchCount": { + "type": "boolean", + "description": "" + }, + "optimizeJoinOfCountSql": { + "type": "boolean", + "description": "" + }, + "maxLimit": { "type": "integer", - "description": "总页数" + "description": "", + "format": "int64" + }, + "countId": { + "type": "string", + "description": "" } - } + }, + "description": "分页结果" }, "PurchasingApply": { "type": "object", @@ -101003,6 +104470,19 @@ } } }, + "OrderItem": { + "type": "object", + "properties": { + "column": { + "type": "string", + "description": "" + }, + "asc": { + "type": "boolean", + "description": "" + } + } + }, "ProfessionalAcademicEducationTypeConfig": { "type": "object", "properties": { @@ -107356,11 +110836,11 @@ "type": "string", "description": "临时允许操作时间" }, - "deptName": { + "classNo": { "type": "string", "description": "" }, - "classNo": { + "deptName": { "type": "string", "description": "" }, @@ -107372,6 +110852,14 @@ "type": "string", "description": "" }, + "teacherNo": { + "type": "string", + "description": "班主任工号" + }, + "goOrStay": { + "type": "string", + "description": "走读生/住宿生" + }, "timeDifference": { "type": "string", "description": "" @@ -108093,6 +111581,30 @@ "allowOpreaTime": { "type": "string", "description": "临时允许操作时间" + }, + "classNo": { + "type": "string", + "description": "班号" + }, + "deptName": { + "type": "string", + "description": "学院" + }, + "realName": { + "type": "string", + "description": "姓名" + }, + "teacherRealName": { + "type": "string", + "description": "班主任姓名" + }, + "teacherNo": { + "type": "string", + "description": "班主任工号" + }, + "goOrStay": { + "type": "string", + "description": "走读生/住宿生" } }, "description": "学生请假" diff --git a/src/api/asset/loading.ts b/src/api/asset/loading.ts new file mode 100644 index 0000000..ae1e312 --- /dev/null +++ b/src/api/asset/loading.ts @@ -0,0 +1,16 @@ +import { NextLoading } from '/@/utils/loading'; + +/** + * 显示加载动画 + */ +export const showLoading = () => { + NextLoading.start(); +}; + +/** + * 隐藏加载动画 + */ +export const hideLoading = () => { + NextLoading.done(); +}; + diff --git a/src/api/basic/basicclass.ts b/src/api/basic/basicclass.ts index aea733f..c0fc57f 100644 --- a/src/api/basic/basicclass.ts +++ b/src/api/basic/basicclass.ts @@ -222,6 +222,16 @@ export const queryNoLeavelClass = () => { }); }; +/** + * 查询所有班级 + */ +export const queryAllClass = () => { + return request({ + url: '/basic/basicclass/queryAllClass', + method: 'get', + }); +}; + /** * 获取班级流失情况 * @param query diff --git a/src/api/contract/contract.ts b/src/api/contract/contract.ts new file mode 100644 index 0000000..4c5315d --- /dev/null +++ b/src/api/contract/contract.ts @@ -0,0 +1,13 @@ +import request from '/@/utils/request'; + +/** + * 根据字典类型获取字典数据 + * @param type 字典类型 + */ +export const getDictByType = (type: string) => { + return request({ + url: `/admin/dict/item/type/${type}`, + method: 'get', + }); +}; + diff --git a/src/api/finance/financenormalstu.ts b/src/api/finance/financenormalstu.ts new file mode 100644 index 0000000..debb406 --- /dev/null +++ b/src/api/finance/financenormalstu.ts @@ -0,0 +1,26 @@ +import request from '/@/utils/request'; + +/** + * 更新缴费状态(单个学生) + * @param data 包含 serialNumber 的对象 + */ +export const updateFs = (data: { serialNumber: string }) => { + return request({ + url: '/finance/financenormalstu/updateFs', + method: 'post', + data, + }); +}; + +/** + * 批量更新缴费状态 + * @param data 包含 year 和 stuSource 的对象 + */ +export const updateAllFS = (data: { year: string; stuSource: string }) => { + return request({ + url: '/finance/financenormalstu/updateAllFS', + method: 'post', + data, + }); +}; + diff --git a/src/api/professional/teacherbase.ts b/src/api/professional/teacherbase.ts new file mode 100644 index 0000000..de2cbab --- /dev/null +++ b/src/api/professional/teacherbase.ts @@ -0,0 +1,6 @@ +/** + * 重新导出 teacherbase 相关函数 + * 为了保持向后兼容性,从 professionaluser/teacherbase 重新导出 + */ +export * from '/@/api/professional/professionaluser/teacherbase'; + diff --git a/src/api/stuwork/classattendance.ts b/src/api/stuwork/classattendance.ts new file mode 100644 index 0000000..d4e2d6f --- /dev/null +++ b/src/api/stuwork/classattendance.ts @@ -0,0 +1,36 @@ +import request from '/@/utils/request'; + +/** + * 分页查询班级考勤列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/classattendance/page', + method: 'get', + params: query + }); +}; + +/** + * 查询我的班级列表 + */ +export const queryMyClassList = () => { + return request({ + url: '/stuwork/classattendance/queryMyClassList', + method: 'get' + }); +}; + +/** + * 提交考勤 + * @param data + */ +export const saveDataBatch = (data: any) => { + return request({ + url: '/stuwork/classattendance/saveDataBatch', + method: 'post', + data + }); +}; + diff --git a/src/api/stuwork/classleaveapply.ts b/src/api/stuwork/classleaveapply.ts new file mode 100644 index 0000000..4ff4112 --- /dev/null +++ b/src/api/stuwork/classleaveapply.ts @@ -0,0 +1,86 @@ +import request from '/@/utils/request'; + +/** + * 分页查询批量请假列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/classleaveapply/page', + method: 'get', + params: query + }); +}; + +/** + * 新增批量请假 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/classleaveapply', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/classleaveapply/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑批量请假 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/classleaveapply/edit', + method: 'post', + data + }); +}; + +/** + * 删除批量请假 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/classleaveapply/delete', + method: 'post', + data: ids + }); +}; + +/** + * 整班删除 + * @param id + */ +export const deleteByClass = (id: string) => { + return request({ + url: '/stuwork/classleaveapply/deleteByClass', + method: 'post', + data: { id } + }); +}; + +/** + * 获取待办任务 + * @param query + */ +export const getClassLeaveApplyTask = (query?: any) => { + return request({ + url: '/stuwork/classleaveapply/task', + method: 'get', + params: query + }); +}; + diff --git a/src/api/stuwork/classroombase.ts b/src/api/stuwork/classroombase.ts new file mode 100644 index 0000000..90d0c50 --- /dev/null +++ b/src/api/stuwork/classroombase.ts @@ -0,0 +1,61 @@ +import request from '/@/utils/request'; + +/** + * 分页查询教室安排及公物管理列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/teachclassroom/fetchClassRoomBaseList', + method: 'get', + params: query + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/classroombase/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑教室安排 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/classroombase/edit', + method: 'post', + data + }); +}; + +/** + * 导出教室安排 + * @param query + */ +export const exportData = (query?: any) => { + return request({ + url: '/stuwork/classroombase/export', + method: 'post', + data: query, + responseType: 'blob' + }); +}; + +/** + * 同步教室安排 + */ +export const syncClassroomArrangement = () => { + return request({ + url: '/stuwork/classroombase/sync', + method: 'post' + }); +}; + diff --git a/src/api/stuwork/dormliveapply.ts b/src/api/stuwork/dormliveapply.ts new file mode 100644 index 0000000..2360d86 --- /dev/null +++ b/src/api/stuwork/dormliveapply.ts @@ -0,0 +1,75 @@ +import request from '/@/utils/request'; + +/** + * 分页查询留宿申请列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/dormliveapply/page', + method: 'get', + params: query + }); +}; + +/** + * 新增留宿申请 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/dormliveapply', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/dormliveapply/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑留宿申请 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/dormliveapply/edit', + method: 'post', + data + }); +}; + +/** + * 删除留宿申请 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/dormliveapply/delete', + method: 'post', + data: ids + }); +}; + +/** + * 导出留宿申请 + * @param query + */ +export const exportData = (query?: any) => { + return request({ + url: '/stuwork/dormliveapply/export', + method: 'post', + data: query, + responseType: 'blob' + }); +}; + diff --git a/src/api/stuwork/dormroom.ts b/src/api/stuwork/dormroom.ts index 466a783..164aa91 100644 --- a/src/api/stuwork/dormroom.ts +++ b/src/api/stuwork/dormroom.ts @@ -87,3 +87,15 @@ export const fetchDormRoomTreeList = (dormdataType?: string) => { }); }; +/** + * 根据房间号查询宿舍数据 + * @param data 包含 roomNo 的对象 + */ +export const getDataByRoomNo = (data: { roomNo: string }) => { + return request({ + url: '/stuwork/dormroom/getDataByRoomNo', + method: 'get', + params: data + }); +}; + diff --git a/src/api/stuwork/stuinnerleaveapplygroup.ts b/src/api/stuwork/stuinnerleaveapplygroup.ts new file mode 100644 index 0000000..bd3a569 --- /dev/null +++ b/src/api/stuwork/stuinnerleaveapplygroup.ts @@ -0,0 +1,62 @@ +import request from '/@/utils/request'; + +/** + * 分页查询校内请假列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/stuinnerleaveapplygroup/page', + method: 'get', + params: query + }); +}; + +/** + * 新增校内请假 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/stuinnerleaveapplygroup', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/stuinnerleaveapplygroup/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑校内请假 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/stuinnerleaveapplygroup/edit', + method: 'post', + data + }); +}; + +/** + * 删除校内请假 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/stuinnerleaveapplygroup/delete', + method: 'post', + data: ids + }); +}; + diff --git a/src/api/stuwork/stuleaveapply.ts b/src/api/stuwork/stuleaveapply.ts new file mode 100644 index 0000000..82b2a8f --- /dev/null +++ b/src/api/stuwork/stuleaveapply.ts @@ -0,0 +1,99 @@ +import request from '/@/utils/request'; + +/** + * 分页查询学生请假列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/stuleaveapply/page', + method: 'get', + params: query + }); +}; + +/** + * 新增学生请假 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/stuleaveapply', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/stuleaveapply/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑学生请假 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/stuleaveapply/edit', + method: 'post', + data + }); +}; + +/** + * 删除学生请假 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/stuleaveapply/delete', + method: 'post', + data: ids + }); +}; + +/** + * 导出学生请假 + * @param query + */ +export const exportData = (query?: any) => { + return request({ + url: '/stuwork/stuleaveapply/export', + method: 'post', + data: query, + responseType: 'blob' + }); +}; + +/** + * 撤销学生请假 + * @param id + */ +export const cancelObj = (id: string) => { + return request({ + url: '/stuwork/stuleaveapply/cancel', + method: 'post', + data: { id } + }); +}; + +/** + * 获取待办任务 + * @param query + */ +export const getStuLeaveApplyTask = (query?: any) => { + return request({ + url: '/stuwork/stuleaveapply/task', + method: 'get', + params: query + }); +}; + diff --git a/src/api/stuwork/stupunlish.ts b/src/api/stuwork/stupunlish.ts index a010ea1..ff799fa 100644 --- a/src/api/stuwork/stupunlish.ts +++ b/src/api/stuwork/stupunlish.ts @@ -1,13 +1,97 @@ import request from '/@/utils/request'; +/** + * 分页查询学生违纪列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/stupunlish/page', + method: 'get', + params: query + }); +}; + +/** + * 新增学生违纪 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/stupunlish', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/stupunlish/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑学生违纪 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/stupunlish/edit', + method: 'post', + data + }); +}; + +/** + * 删除学生违纪 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/stupunlish/delete', + method: 'post', + data: ids + }); +}; + +/** + * 导出学生违纪 + * @param query + */ +export const exportData = (query?: any) => { + return request({ + url: '/stuwork/stupunlish/export', + method: 'post', + data: query, + responseType: 'blob' + }); +}; + /** * 根据班级代码查询惩罚数量 * @param classCode 班级代码 */ export const queryPunlishNumByClass = (classCode: string | number) => { - return request({ - url: `/stuwork/stupunlish/queryPunlishNumByClass/${classCode}`, - method: 'get', - }); + return request({ + url: `/stuwork/stupunlish/queryPunlishNumByClass/${classCode}`, + method: 'get' + }); }; +/** + * 撤销处分 + * @param data 包含id和publishStatus的对象,publishStatus设置为"0"即可撤销处分 + */ +export const revokePunishment = (data: any) => { + return request({ + url: '/stuwork/stupunlish/cancelStatus', + method: 'post', + data + }); +}; diff --git a/src/api/stuwork/stutemleaveapply.ts b/src/api/stuwork/stutemleaveapply.ts new file mode 100644 index 0000000..42cb046 --- /dev/null +++ b/src/api/stuwork/stutemleaveapply.ts @@ -0,0 +1,62 @@ +import request from '/@/utils/request'; + +/** + * 分页查询临时请假列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/stutemleaveapply/page', + method: 'get', + params: query + }); +}; + +/** + * 新增临时请假 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/stutemleaveapply', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/stutemleaveapply/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑临时请假 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/stutemleaveapply/edit', + method: 'post', + data + }); +}; + +/** + * 删除临时请假 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/stutemleaveapply/delete', + method: 'post', + data: ids + }); +}; + diff --git a/src/api/stuwork/stuturnover.ts b/src/api/stuwork/stuturnover.ts new file mode 100644 index 0000000..fd48a9a --- /dev/null +++ b/src/api/stuwork/stuturnover.ts @@ -0,0 +1,75 @@ +import request from '/@/utils/request'; + +/** + * 分页查询学籍异动列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/stuturnover/page', + method: 'get', + params: query + }); +}; + +/** + * 新增学籍异动(批量) + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/stuturnover', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/stuturnover/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑学籍异动 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/stuturnover/edit', + method: 'post', + data + }); +}; + +/** + * 删除学籍异动 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/stuturnover/delete', + method: 'post', + data: ids + }); +}; + +/** + * 导出学籍异动 + * @param query + */ +export const exportData = (query?: any) => { + return request({ + url: '/stuwork/stuturnover/export', + method: 'post', + data: query, + responseType: 'blob' + }); +}; + diff --git a/src/api/stuwork/teachbuilding.ts b/src/api/stuwork/teachbuilding.ts new file mode 100644 index 0000000..9221e65 --- /dev/null +++ b/src/api/stuwork/teachbuilding.ts @@ -0,0 +1,72 @@ +import request from '/@/utils/request'; + +/** + * 分页查询教学楼列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/teachbuilding/page', + method: 'get', + params: query + }); +}; + +/** + * 获取教学楼列表(不分页) + */ +export const getBuildingList = () => { + return request({ + url: '/stuwork/teachbuilding/list', + method: 'get' + }); +}; + +/** + * 新增教学楼 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/teachbuilding', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/teachbuilding/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑教学楼 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/teachbuilding/edit', + method: 'post', + data + }); +}; + +/** + * 删除教学楼 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/teachbuilding/delete', + method: 'post', + data: ids + }); +}; + diff --git a/src/api/stuwork/teachclassroom.ts b/src/api/stuwork/teachclassroom.ts new file mode 100644 index 0000000..fe66448 --- /dev/null +++ b/src/api/stuwork/teachclassroom.ts @@ -0,0 +1,84 @@ +import request from '/@/utils/request'; + +/** + * 分页查询教室列表 + * @param query + */ +export const fetchList = (query?: any) => { + return request({ + url: '/stuwork/teachclassroom/page', + method: 'get', + params: query + }); +}; + +/** + * 获取教室列表(不分页) + */ +export const getClassRoomList = () => { + return request({ + url: '/stuwork/teachclassroom/list', + method: 'get' + }); +}; + +/** + * 新增教室 + * @param data + */ +export const addObj = (data: any) => { + return request({ + url: '/stuwork/teachclassroom', + method: 'post', + data + }); +}; + +/** + * 获取详情 + * @param id + */ +export const getDetail = (id: string) => { + return request({ + url: '/stuwork/teachclassroom/detail', + method: 'get', + params: { id } + }); +}; + +/** + * 编辑教室 + * @param data + */ +export const editObj = (data: any) => { + return request({ + url: '/stuwork/teachclassroom/edit', + method: 'post', + data + }); +}; + +/** + * 删除教室 + * @param ids + */ +export const delObj = (ids: string[]) => { + return request({ + url: '/stuwork/teachclassroom/delete', + method: 'post', + data: ids + }); +}; + +/** + * 批量设置(批量更新选中教室的学院) + * @param data 包含ids(教室ID数组)和deptCode(学院代码) + */ +export const batchSet = (data: any) => { + return request({ + url: '/stuwork/teachclassroom/batchSet', + method: 'post', + data + }); +}; + diff --git a/src/config/global.ts b/src/config/global.ts new file mode 100644 index 0000000..3c6f2a4 --- /dev/null +++ b/src/config/global.ts @@ -0,0 +1,24 @@ +/** + * 全局常量配置 + */ + +/** + * 角色代码常量 + */ +export const ROLE_CODE = { + ROLE_RECRUIT: 'ROLE_RECRUIT', + ROLE_RECRUIT_SECOND: 'ROLE_RECRUIT_SECOND' +}; + +/** + * 当前学期 + * 注意:这个值可能需要从后端获取或从配置中读取 + */ +export const CURRENT_SCHOOL_TERM = '1'; // 默认值,实际应该从后端获取 + +/** + * 当前学年 + * 注意:这个值可能需要从后端获取或从配置中读取 + */ +export const CURRENT_SCHOOL_YEAR = ''; // 默认值,实际应该从后端获取 + diff --git a/src/views/recruit/backSchoolCheckin/staticIndex.vue b/src/views/recruit/backSchoolCheckin/staticIndex.vue index eec4ee0..a2fef80 100644 --- a/src/views/recruit/backSchoolCheckin/staticIndex.vue +++ b/src/views/recruit/backSchoolCheckin/staticIndex.vue @@ -69,7 +69,7 @@ import { ref, reactive, onMounted } from 'vue' import { list } from '/@/api/recruit/recruitstudentplangroup' import { getTabStaticDataList as getTabStaticDataListApi } from '/@/api/recruit/recruitstudentsignup' // @ts-ignore -import global from '@/components/tools/commondict' +import global from '@/components/tools/commondict.vue' import { useTable } from '/@/hooks/table' // 表格引用 diff --git a/src/views/recruit/backSchoolCheckin/statistics.vue b/src/views/recruit/backSchoolCheckin/statistics.vue index 2cb6669..b073ae8 100644 --- a/src/views/recruit/backSchoolCheckin/statistics.vue +++ b/src/views/recruit/backSchoolCheckin/statistics.vue @@ -103,7 +103,7 @@ import { useMessage } from '/@/hooks/message' import { getDataStatistics } from '/@/api/recruit/newstucheckin' import { list } from '/@/api/recruit/recruitstudentplangroup' import { getDeptList } from '/@/api/basic/basicclass' -import { getClasslist } from '/@/api/stuwork/stupunlish' +import { queryAllClass } from '/@/api/basic/basicclass' import axios from 'axios' // 使用 Pinia store @@ -173,7 +173,7 @@ const getDeptData = async () => { // 查找所有班级 const getClassData = async () => { try { - const data = await getClasslist() + const data = await queryAllClass() classData.value = data.data || [] } catch (error) { console.error('获取班级列表失败', error) diff --git a/src/views/recruit/newstucheckin/statistics.vue b/src/views/recruit/newstucheckin/statistics.vue index 66fbb71..af50a42 100644 --- a/src/views/recruit/newstucheckin/statistics.vue +++ b/src/views/recruit/newstucheckin/statistics.vue @@ -103,7 +103,7 @@ import { useMessage } from '/@/hooks/message' import { getDataStatistics } from '/@/api/recruit/newstucheckin' import { list } from '/@/api/recruit/recruitstudentplangroup' import { getDeptList } from '/@/api/basic/basicclass' -import { getClasslist } from '/@/api/stuwork/stupunlish' +import { queryAllClass } from '/@/api/basic/basicclass' import axios from 'axios' // 使用 Pinia store @@ -173,7 +173,7 @@ const getDeptData = async () => { // 查找所有班级 const getClassData = async () => { try { - const data = await getClasslist() + const data = await queryAllClass() classData.value = data.data || [] } catch (error) { console.error('获取班级列表失败', error) diff --git a/src/views/recruit/recruitImitateAdjustBatch/mnTable.vue b/src/views/recruit/recruitImitateAdjustBatch/mnTable.vue index a9d6db0..ec03206 100644 --- a/src/views/recruit/recruitImitateAdjustBatch/mnTable.vue +++ b/src/views/recruit/recruitImitateAdjustBatch/mnTable.vue @@ -134,7 +134,7 @@ import { getMNStuList, delMNObj } from '@/api/recruit/recruitImitateAdjustBatch' import { listPlanByCondition as planMajor } from "@/api/recruit/recruitstudentplan" import { getTypeValue } from "@/api/admin/dict" // @ts-ignore -import global from '@/components/tools/commondict' +import global from '@/components/tools/commondict.vue' const AddMNStu = defineAsyncComponent(() => import('./addMNStu.vue')) diff --git a/src/views/recruit/recruitstudentsignup/dorm_analysis.vue b/src/views/recruit/recruitstudentsignup/dorm_analysis.vue index 8d1551d..6688e37 100644 --- a/src/views/recruit/recruitstudentsignup/dorm_analysis.vue +++ b/src/views/recruit/recruitstudentsignup/dorm_analysis.vue @@ -74,7 +74,7 @@ import { getDeptList } from "@/api/basic/basicclass" import { dormApplyAnalysis } from "@/api/recruit/recruitstudentsignup" import { list } from '@/api/recruit/recruitstudentplangroup' // @ts-ignore -import global from '@/components/tools/commondict' +import global from '@/components/tools/commondict.vue' // 响应式数据 const deptList = ref([]) diff --git a/src/views/recruit/recruitstudentsignup/indexClass.vue b/src/views/recruit/recruitstudentsignup/indexClass.vue index b6cceba..72f9a6e 100644 --- a/src/views/recruit/recruitstudentsignup/indexClass.vue +++ b/src/views/recruit/recruitstudentsignup/indexClass.vue @@ -445,7 +445,7 @@ import { oneStuNo, changeClassInfo, getMajorClass } from '@/api/recruit/recruitstudentsignup' -import global from '@/components/tools/commondict' +import global from '@/components/tools/commondict.vue' import { getClassListByRole, getDeptList, queryAllClassByInfo } from "@/api/basic/basicclass" import {listPlanByCondition as planMajor} from "@/api/recruit/recruitstudentplan" import { getTypeValue } from "@/api/admin/dict" diff --git a/src/views/recruit/recruitstudentsignup/interviewForm.vue b/src/views/recruit/recruitstudentsignup/interviewForm.vue index 0b66a80..dd2aa45 100644 --- a/src/views/recruit/recruitstudentsignup/interviewForm.vue +++ b/src/views/recruit/recruitstudentsignup/interviewForm.vue @@ -22,7 +22,7 @@ import { ref, reactive } from 'vue' import { useMessage } from '/@/hooks/message' // @ts-ignore -import global from "@/components/tools/commondict" +import global from "@/components/tools/commondict.vue" import { interview } from "@/api/recruit/recruitstudentsignup" // 消息提示 hooks diff --git a/src/views/recruit/recruitstudentsignup/list.vue b/src/views/recruit/recruitstudentsignup/list.vue index c61c949..f82d07c 100644 --- a/src/views/recruit/recruitstudentsignup/list.vue +++ b/src/views/recruit/recruitstudentsignup/list.vue @@ -269,7 +269,7 @@ import { list } from '/@/api/recruit/recruitstudentplangroup' import { fetchListStuDorm, yjOut, setFw, delFw, yjSend } from '/@/api/recruit/recruitstudentsignup' import { getDeptList } from '/@/api/basic/basicclass' // @ts-ignore -import global from '@/components/tools/commondict' +import global from '@/components/tools/commondict.vue' const DormFW = defineAsyncComponent(() => import('./dormFW.vue')) const ShowMap = defineAsyncComponent(() => import('./showMap.vue')) diff --git a/src/views/recruit/recruitstudentsignupturnover/indexOld.vue b/src/views/recruit/recruitstudentsignupturnover/indexOld.vue deleted file mode 100644 index 1e0c268..0000000 --- a/src/views/recruit/recruitstudentsignupturnover/indexOld.vue +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - diff --git a/src/views/stuwork/classattendance/index.vue b/src/views/stuwork/classattendance/index.vue new file mode 100644 index 0000000..aa7d320 --- /dev/null +++ b/src/views/stuwork/classattendance/index.vue @@ -0,0 +1,279 @@ + + + + diff --git a/src/views/stuwork/classleaveapply/detail.vue b/src/views/stuwork/classleaveapply/detail.vue new file mode 100644 index 0000000..581b418 --- /dev/null +++ b/src/views/stuwork/classleaveapply/detail.vue @@ -0,0 +1,223 @@ + + + + + + diff --git a/src/views/stuwork/classleaveapply/form.vue b/src/views/stuwork/classleaveapply/form.vue new file mode 100644 index 0000000..da92145 --- /dev/null +++ b/src/views/stuwork/classleaveapply/form.vue @@ -0,0 +1,471 @@ + + + + + + diff --git a/src/views/stuwork/classleaveapply/index.vue b/src/views/stuwork/classleaveapply/index.vue new file mode 100644 index 0000000..0377249 --- /dev/null +++ b/src/views/stuwork/classleaveapply/index.vue @@ -0,0 +1,504 @@ + + + + + + diff --git a/src/views/stuwork/classroombase/arrange.vue b/src/views/stuwork/classroombase/arrange.vue new file mode 100644 index 0000000..bbdfc0a --- /dev/null +++ b/src/views/stuwork/classroombase/arrange.vue @@ -0,0 +1,223 @@ + + + + + + diff --git a/src/views/stuwork/classroombase/index.vue b/src/views/stuwork/classroombase/index.vue new file mode 100644 index 0000000..45f72d3 --- /dev/null +++ b/src/views/stuwork/classroombase/index.vue @@ -0,0 +1,413 @@ + + + + + + diff --git a/src/views/stuwork/dormliveapply/form.vue b/src/views/stuwork/dormliveapply/form.vue new file mode 100644 index 0000000..7d0452b --- /dev/null +++ b/src/views/stuwork/dormliveapply/form.vue @@ -0,0 +1,199 @@ + + + + diff --git a/src/views/stuwork/dormliveapply/index.vue b/src/views/stuwork/dormliveapply/index.vue new file mode 100644 index 0000000..6b0c329 --- /dev/null +++ b/src/views/stuwork/dormliveapply/index.vue @@ -0,0 +1,407 @@ + + + + diff --git a/src/views/stuwork/stuinnerleaveapplygroup/form.vue b/src/views/stuwork/stuinnerleaveapplygroup/form.vue new file mode 100644 index 0000000..7ab9c4b --- /dev/null +++ b/src/views/stuwork/stuinnerleaveapplygroup/form.vue @@ -0,0 +1,516 @@ + + + + diff --git a/src/views/stuwork/stuinnerleaveapplygroup/index.vue b/src/views/stuwork/stuinnerleaveapplygroup/index.vue new file mode 100644 index 0000000..467d690 --- /dev/null +++ b/src/views/stuwork/stuinnerleaveapplygroup/index.vue @@ -0,0 +1,196 @@ + + + diff --git a/src/views/stuwork/stuleaveapply/form.vue b/src/views/stuwork/stuleaveapply/form.vue new file mode 100644 index 0000000..26c25ca --- /dev/null +++ b/src/views/stuwork/stuleaveapply/form.vue @@ -0,0 +1,327 @@ + + + + diff --git a/src/views/stuwork/stuleaveapply/index.vue b/src/views/stuwork/stuleaveapply/index.vue new file mode 100644 index 0000000..3e66abc --- /dev/null +++ b/src/views/stuwork/stuleaveapply/index.vue @@ -0,0 +1,537 @@ + + + + diff --git a/src/views/stuwork/stupunlish/form.vue b/src/views/stuwork/stupunlish/form.vue new file mode 100644 index 0000000..4acbae2 --- /dev/null +++ b/src/views/stuwork/stupunlish/form.vue @@ -0,0 +1,386 @@ + + + + diff --git a/src/views/stuwork/stupunlish/index.vue b/src/views/stuwork/stupunlish/index.vue new file mode 100644 index 0000000..96eba7d --- /dev/null +++ b/src/views/stuwork/stupunlish/index.vue @@ -0,0 +1,517 @@ + + + + diff --git a/src/views/stuwork/stutemleaveapply/form.vue b/src/views/stuwork/stutemleaveapply/form.vue new file mode 100644 index 0000000..6786244 --- /dev/null +++ b/src/views/stuwork/stutemleaveapply/form.vue @@ -0,0 +1,338 @@ + + + + + + diff --git a/src/views/stuwork/stutemleaveapply/index.vue b/src/views/stuwork/stutemleaveapply/index.vue new file mode 100644 index 0000000..7f31556 --- /dev/null +++ b/src/views/stuwork/stutemleaveapply/index.vue @@ -0,0 +1,268 @@ + + + + + + diff --git a/src/views/stuwork/stuturnover/form.vue b/src/views/stuwork/stuturnover/form.vue new file mode 100644 index 0000000..926ec4e --- /dev/null +++ b/src/views/stuwork/stuturnover/form.vue @@ -0,0 +1,624 @@ + + + + diff --git a/src/views/stuwork/stuturnover/index.vue b/src/views/stuwork/stuturnover/index.vue new file mode 100644 index 0000000..495b352 --- /dev/null +++ b/src/views/stuwork/stuturnover/index.vue @@ -0,0 +1,433 @@ + + + + diff --git a/src/views/stuwork/teachbuilding/form.vue b/src/views/stuwork/teachbuilding/form.vue new file mode 100644 index 0000000..615cfde --- /dev/null +++ b/src/views/stuwork/teachbuilding/form.vue @@ -0,0 +1,128 @@ + + + + + + diff --git a/src/views/stuwork/teachbuilding/index.vue b/src/views/stuwork/teachbuilding/index.vue new file mode 100644 index 0000000..10272d0 --- /dev/null +++ b/src/views/stuwork/teachbuilding/index.vue @@ -0,0 +1,116 @@ + + + + + + diff --git a/src/views/stuwork/teachclassroom/batch.vue b/src/views/stuwork/teachclassroom/batch.vue new file mode 100644 index 0000000..bd3d6cb --- /dev/null +++ b/src/views/stuwork/teachclassroom/batch.vue @@ -0,0 +1,150 @@ + + + + + + diff --git a/src/views/stuwork/teachclassroom/form.vue b/src/views/stuwork/teachclassroom/form.vue new file mode 100644 index 0000000..c0d5c02 --- /dev/null +++ b/src/views/stuwork/teachclassroom/form.vue @@ -0,0 +1,195 @@ + + + + + + diff --git a/src/views/stuwork/teachclassroom/index.vue b/src/views/stuwork/teachclassroom/index.vue new file mode 100644 index 0000000..fe97f40 --- /dev/null +++ b/src/views/stuwork/teachclassroom/index.vue @@ -0,0 +1,244 @@ + + + + + +