123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- openapi: 3.0.1
- info:
- title: QC
- description: ''
- version: 1.0.0
- tags:
- - name: 红领巾爱学习
- - name: 红领巾爱学习/集体学习
- paths:
- /CollectiveLearnController/submitContent:
- post:
- summary: 集体学习提交内容
- x-apifox-folder: 红领巾爱学习/集体学习
- x-apifox-status: developing
- deprecated: false
- description: ''
- operationId: submitContent
- tags:
- - 红领巾爱学习/集体学习
- parameters: []
- requestBody:
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/CollectiveLearnDTO'
- responses:
- '200':
- description: 成功
- content:
- application/json:
- schema:
- type: string
- x-run-in-apifox: https://apifox.com/web/project/3220849/apis/api-107221264-run
- /CollectiveLearnController/examine:
- post:
- summary: 集体学习审核
- x-apifox-folder: 红领巾爱学习/集体学习
- x-apifox-status: developing
- deprecated: false
- description: ''
- operationId: examine
- tags:
- - 红领巾爱学习/集体学习
- parameters: []
- requestBody:
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/CollectiveLearnExamineDTO'
- responses:
- '200':
- description: 成功
- content:
- application/json:
- schema:
- type: string
- x-run-in-apifox: https://apifox.com/web/project/3220849/apis/api-107250380-run
- /CollectiveLearnController/searchExamine:
- post:
- summary: 集体学习查询审核弹窗
- x-apifox-folder: 红领巾爱学习/集体学习
- x-apifox-status: developing
- deprecated: false
- description: ''
- operationId: searchExamine
- tags:
- - 红领巾爱学习/集体学习
- parameters: []
- requestBody:
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/SearchExamineDTO'
- responses:
- '200':
- description: 成功
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/CollectiveLearnSearchExamineVO'
- x-run-in-apifox: https://apifox.com/web/project/3220849/apis/api-107268692-run
- /service-redscarf/auth/CollectiveLearnController/notExamineNum:
- post:
- summary: 集体学习查询未审核的数量接口
- x-apifox-folder: 红领巾爱学习/集体学习
- x-apifox-status: developing
- deprecated: false
- description: ''
- operationId: notExamineNum
- tags:
- - 红领巾爱学习/集体学习
- parameters: []
- requestBody:
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/CollectiveLearnNotExamineNumDTO'
- responses:
- '200':
- description: 成功
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/CollectiveLearnNotExamineNumVO'
- x-run-in-apifox: https://apifox.com/web/project/3220849/apis/api-107548594-run
- components:
- schemas:
- CollectiveLearnNotExamineNumVO:
- type: object
- properties:
- num:
- type: integer
- title: 数量
- description: 数量
- x-apifox-orders:
- - num
- required:
- - num
- x-apifox-ignore-properties: []
- x-apifox-folder: 红领巾爱学习/集体学习
- CollectiveLearnNotExamineNumDTO:
- type: object
- properties:
- county:
- type: string
- title: 区县名称
- description: 区县名称
- x-apifox-orders:
- - county
- required:
- - county
- x-apifox-ignore-properties: []
- x-apifox-folder: 红领巾爱学习/集体学习
- CollectiveLearnSearchExamineVO:
- type: object
- properties:
- quarter:
- type: string
- title: 学季
- description: 学季
- semester:
- type: string
- title: 学期
- description: 学期
- squadron:
- type: string
- title: 中队
- description: 中队
- presenter:
- type: string
- title: 提交人名称
- description: 提交人名称
- time:
- type: string
- title: 时间
- description: 时间
- location:
- type: string
- title: 地点
- description: 地点
- picList:
- type: array
- items:
- type: string
- description: 图片
- title: 图片列表
- description: 图片列表
- x-apifox-orders:
- - quarter
- - semester
- - squadron
- - presenter
- - time
- - location
- - picList
- required:
- - quarter
- - semester
- - squadron
- - presenter
- - time
- - location
- - picList
- x-apifox-ignore-properties: []
- x-apifox-folder: 红领巾爱学习/集体学习
- SearchExamineDTO:
- type: object
- properties:
- squadronId:
- type: string
- title: 中队id
- description: 中队id
- x-apifox-orders:
- - squadronId
- required:
- - squadronId
- x-apifox-ignore-properties: []
- x-apifox-folder: 红领巾爱学习/集体学习
- CollectiveLearnExamineDTO:
- type: object
- properties:
- squadronId:
- type: integer
- title: 中队id
- description: 中队id
- isPass:
- type: integer
- title: 是否通过(1通过,0不通过)
- description: 是否通过(1通过,0不通过)
- x-apifox-orders:
- - squadronId
- - isPass
- required:
- - squadronId
- - isPass
- x-apifox-ignore-properties: []
- x-apifox-folder: 红领巾爱学习/集体学习
- CollectiveLearnDTO:
- type: object
- properties:
- quarter:
- type: string
- title: 学季
- description: 学季
- semester:
- type: string
- title: 学期
- description: 学期
- time:
- type: string
- title: 选择时间
- description: 选择时间
- location:
- type: string
- title: 地点
- description: 地点
- picList:
- type: array
- items:
- type: string
- description: 图片
- title: 图片列表
- description: 图片列表
- x-apifox-orders:
- - quarter
- - semester
- - time
- - location
- - picList
- required:
- - quarter
- - semester
- - time
- - location
- - picList
- x-apifox-ignore-properties: []
- x-apifox-folder: 红领巾爱学习/集体学习
- servers:
- - url: /auth
- description: sysmgr服务前置
|