{ "openapi": "3.0.1", "info": { "title": "默认模块", "description": "cloud-purchase 模块:采购品目、特殊情况管理接口", "version": "1.0.0" }, "tags": [], "paths": { "/api/stuwork/weekPlan/page": { "get": { "summary": "每周计划列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "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": "author", "in": "query", "description": "作者", "required": false, "example": "史慧", "schema": { "type": "string" } }, { "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "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\": \"a7129e0b874bd5875590074f33d870a7\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-12-26 17:36:16\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"tenantId\": null,\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"title\": \"第十八周(1.2-1.5)学生工作安排\",//标题\r\n \"content\": \"测试\",//内容\r\n \"author\": \"史慧\"//作者\r\n }\r\n ],\r\n \"total\": 1,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/weekPlan": { "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 \"title\": \"第十八周(1.2-1.5)学生工作安排\",//标题\r\n \"content\":\"测试\",//内容\r\n \"author\": \"史慧\"//作者\r\n }" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/weekPlan/edit": { "post": { "summary": "更新每周计划", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 8c7a784c-4ad5-4211-906e-2fff5829ec3d", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": " {\r\n \"id\": \"31fe1d152858f8506636ca919f805c4a\",\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"title\": \"第十八周(1.2-1.5)学生工作安排\",\r\n \"content\":\"测试\",//内容\r\n \"author\": \"史慧\"\r\n }" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/weekPlan/delete": { "post": { "summary": "删除每周计划", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 8c7a784c-4ad5-4211-906e-2fff5829ec3d", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "[\"31fe1d152858f8506636ca919f805c4a\"]//id集合" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/weekPlan/detail": { "get": { "summary": "查看每周计划详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "087ef26aabf385019c4bb36e3f9a403d", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"id\": \"087ef26aabf385019c4bb36e3f9a403d\",\n \"createBy\": \"00632\",\n \"createTime\": \"2024-04-30 09:18:47\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"remarks\": null,\n \"tenantId\": null,\n \"schoolYear\": \"2023-2024\",//学年\n \"schoolTerm\": \"2\",//学期\n \"title\": \"第九周(4.22-4.26)学生工作安排\",//标题\n \"content\": \"

一、临时工作:

通知:14:00-17:00,省发改委一行到校参观调研,梅书记孙校带领参观,保持实训室及校园卫生整洁,班级注意放学管理

二、运动会

1、运动会现场站位,医药共14路(路标以运动场小长方形状排水沟为标记)一路为2个班级,班主任站于队伍第一个班级管理,邵璟提前到位引导入场秩序,08:20前全体师生入场到位,闭幕式时间初定14:15后续等具体通知。

2、运动会前班级利用晨会课做一次安全教育,包括赛前各种热身,赛后身体反应的应对等等,赛中学校医务组的位置在主席台下方正中位置,如有受伤及时就医

3、运动会卫生工作,班级引导自我管理,班主任及班委干部监督管理,做到运动会期间不留一片垃圾。

4、看台班级安排:2339、2340、2341、2342、2343、2344,班主任一同入座,开幕式和闭幕式都在看台,特别注意卫生工作、班级风貌、为运动员和方阵选手加油助威。

5、检录处在篮球场,请提前做好检录工作,班主任在现场管理,关注成绩发布

6、班级宣传工作,稿件经班主任签字后上传给广播人员,每班安排人员采集运动员风采(照片、视频形式自拟),特别是吉尼斯项目。

7、留住体育之美摄影比赛,图文并茂,文字简洁干练,每班级提交不少于3副作品5.6号前以班级为单位打包发给黄飞老师,学院挑选作品参加校级评

三、优秀班主任评比,学院推选4-5人:基本条件必须满足,新增3个附加项目,利用五月份时间充分准备

1、班级建设方案,如有完善,如无可以新做

2、一份主题班会课教案,内容不限制

3、典型教育案例一份,正向和负向都可以,1000字左右

四、关于诈骗,每学期公布诈骗金额排行榜,截止目前学校排行榜共2名,都在本学院,分别为2241班芮同学600元,2130班宋同学198元,班主任如何恰当处理报警问题?

五、关于抽烟问题

1、明确未成年人禁止抽烟

2、班级抽烟情况摸底,屡教不改的做调研,和家长沟通文字留痕允许在校抽烟的具体名单5.26号前报综合科邵璟科长处

3、教学、宿舍区域严禁抽烟,下一阶段学校联动学院严格抽烟学生管理和违纪处理

六、文明仪表整改

下一阶段重点仍然为美甲和头发的整理,各班级本周自我整改,下周起学院抽查和集中检查。

七、卫生工作

教室门口区域放学后部分班级还是零零散散有垃圾,下一阶段重点为班级卫生包含教室门口公共区域,特别是教室四边角落,课桌椅整齐度,门窗等,本周班级自我整改,下周起卫生检查力度加大,年级组长共同参与检查。

八、近期利用班会课时间开一场生命教育的主题班会,各班做好资料记录

九、班主任值完班刷脸

4月16日晚8:02分刷脸

十、“三创”学院上报名单

\",//内容\n \"author\": \"邵璟\"//作者\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classRoomHygieneDaily/page": { "get": { "summary": "教室卫生列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "部门编码", "required": false, "example": "13", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级编码", "required": false, "example": "1317092428", "schema": { "type": "string" } }, { "name": "recordDate", "in": "query", "description": "日期", "required": false, "example": "2025-12-16", "schema": { "type": "string" } }, { "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classRoomHygieneDaily": { "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 \"classCode\": \"1317092428\",//班级代码\r\n \"score\": 5.00,//扣分\r\n \"note\": \"板槽有灰\",//检查记录\r\n \"recordDate\": \"2025-12-16\"//检查日期\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classRoomHygieneDaily/edit": { "post": { "summary": "教室卫生编辑", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 8c7a784c-4ad5-4211-906e-2fff5829ec3d", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"id\": \"122b0c01e6d3dab038422289c9356e87\",//id\r\n \"classCode\": \"1317092428\",//班级代码\r\n \"score\": 5.00,//扣分\r\n \"note\": \"板槽有灰\",//检查记录\r\n \"recordDate\": \"2025-12-16\"//检查日期\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classRoomHygieneDaily/delete": { "post": { "summary": "教室卫生删除", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 8c7a784c-4ad5-4211-906e-2fff5829ec3d", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "[\"122b0c01e6d3dab038422289c9356e87\"]//id集合" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classRoomHygieneDaily/detail": { "get": { "summary": "教室卫生详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "部门编码", "required": false, "example": "63da344db8051ad0c5635b757275fb2a", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": { "code": 0, "msg": null, "data": { "id": "63da344db8051ad0c5635b757275fb2a", "createBy": "admin", "createTime": "2025-12-26 10:44:36", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "classCode": "1317092428", "classNo": "2428", "className": "信息服务2428", "score": 5, "note": "板槽有灰", "schoolYear": null, "schoolTerm": null, "recordDate": "2025-12-16", "deptCode": "13", "deptName": "信息服务学院" }, "ok": true } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/file/exportClassRoomHygieneMonth": { "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": { "multipart/form-data": { "schema": { "type": "object", "properties": { "file": { "format": "binary", "type": "string", "description": "文件", "example": "file://C:\\Users\\49384\\Downloads\\教室月卫生导入模板.xlsx" }, "date": { "description": "月份", "example": "2025-12", "type": "string" } } }, "examples": {} } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classroomhygienemonthly/checkClassRoomHygieneMonthly": { "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 \"month\": \"2025-10\"//月份\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classroomhygienemonthly/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": "schoolYear", "in": "query", "description": "学年 ", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "month", "in": "query", "description": "月份", "required": false, "example": "2019-11", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "0317111616", "schema": { "type": "string" } }, { "name": "deptCode", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "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\": \"00432afdfdf547d194b8c8b0b7ab19e2\",\r\n \"createBy\": \"25d1a798d6214bae98e56ded336d050c\",\r\n \"createTime\": \"2019-11-12 21:36:40\",\r\n \"updateBy\": \"25d1a798d6214bae98e56ded336d050c\",\r\n \"updateTime\": \"2019-11-12 21:36:40\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"classCode\": \"0317111616\",//班级代码\r\n \"classNo\": null,//班级号\r\n \"className\": null,//班级\r\n \"score\": 100.00,//评分\r\n \"note\": \"卫生检查无情况\",//检查记录\r\n \"schoolYear\": \"2019-2020\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"month\": \"2019-11\",//月份\r\n \"deptCode\": null,//学员编码\r\n \"deptName\": null,//学院\r\n \"teacherNo\": null,//班主任工号\r\n \"classMasterName\": null,//班主任姓名\r\n \"buildingNo\": null,//教学楼号\r\n \"position\": null//教室号\r\n }\r\n ],\r\n \"total\": 1,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classroomhygienemonthly/delete": { "post": { "summary": "教室卫生删除", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 6ab6b5cc-fa0a-4524-af57-af169749581c", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": [ "122b0c01e6d3dab038422289c9356e87" ] } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classroomhygienemonthly/detail": { "get": { "summary": "教室卫生详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "00432afdfdf547d194b8c8b0b7ab19e2", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"id\": \"00432afdfdf547d194b8c8b0b7ab19e2\",\n \"createBy\": \"25d1a798d6214bae98e56ded336d050c\",\n \"createTime\": \"2019-11-12 21:36:40\",\n \"updateBy\": \"25d1a798d6214bae98e56ded336d050c\",\n \"updateTime\": \"2019-11-12 21:36:40\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"classCode\": \"0317111616\",//班级代码\n \"classNo\": null,//班级号\n \"className\": null,//班级\n \"score\": 100.00,//评分\n \"note\": \"卫生检查无情况\",//检查记录\n \"schoolYear\": \"2019-2020\",//学年\n \"schoolTerm\": \"1\",//学期\n \"month\": \"2019-11\",//月份\n \"deptCode\": null,//学员编码\n \"deptName\": null,//学院\n \"teacherNo\": null,//班主任工号\n \"classMasterName\": null,//班主任姓名\n \"buildingNo\": null,//教学楼号\n \"position\": null//教室号\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classcheckdaily/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": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "1617012437", "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "班主任姓名", "required": false, "example": "何", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classcheckdaily": { "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 \"classCode\": \"1523042355\",//班级代码\r\n \"recordTime\":\"2025-12-29\",//记录时间\r\n \"realName\": \"何文斌\",//学生姓名\r\n \"stuNo\": \"152304235510\",//学号\r\n \"score\": -1.00,//分数\r\n \"note\": \"扣分1分,宿舍打闹\"//检查记录\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classcheckdaily/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": [ "4305452886bba6feefcb102248669d58" ] } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classcheckdaily/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "c81b302866d075c362d34f10278483fd", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classcheckdaily/exportData": { "post": { "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": "classCode", "in": "query", "description": "", "required": false, "example": "1617012437", "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "", "required": false, "example": "何", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"deptCode\": \"12\",//学院编码\r\n \"classCode\": \"2320\",//班级代码\r\n \"realName\": \"1\",//学生姓名\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\"//学期\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classcheckdaily/rank": { "get": { "summary": "学期统计", "deprecated": false, "description": "", "tags": [], "parameters": [ { "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhygienedaily/page": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": [ "0212131603" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院编码", "required": false, "example": "11", "schema": { "type": "string" } }, { "name": "startTime", "in": "query", "description": "开始时间", "required": false, "example": "2018-11-01", "schema": { "type": "string" } }, { "name": "endTime", "in": "query", "description": "结束时间", "required": false, "example": "2025-12-31", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhygienedaily": { "post": { "summary": "新增", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 397834ed-052c-4586-acf1-fc22def0f3a7", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"classCode\": \"0212131603\",//班级代码\r\n \"score\": 10.00,//分数\r\n \"note\": \"晚自习随意下座位2人\",//检查记录\r\n \"recordDate\": \"2025-12-29\"//记录时间\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhygienedaily/delete": { "post": { "summary": "删除", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 397834ed-052c-4586-acf1-fc22def0f3a7", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": [ "122b0c01e6d3dab038422289c9356e87" ] } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhygienedaily/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "ae567ac2c6d769ef09c3e184727fa59e", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhygienedaily/edit": { "post": { "summary": "编辑", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "Authorization", "in": "header", "description": "", "required": false, "example": "Bearer 397834ed-052c-4586-acf1-fc22def0f3a7", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"id\": \"ae567ac2c6d769ef09c3e184727fa59e\",\r\n \"classCode\": \"0212131603\",//班级代码\r\n \"score\": 10.00,//分数\r\n \"note\": \"晚自习随意下座位2人\",//检查记录\r\n \"recordDate\": \"2025-12-29\"//记录时间\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhonor/queryClassHonorByClassCode": { "get": { "summary": "班级概况-班级荣誉", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": "0223251708", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": [\n {\n \"id\": \"d098bbdd597d408b9b793b615a629b61\",\n \"createBy\": \"00206\",\n \"createTime\": \"2020-12-15 17:42:41\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2020-12-15 17:42:41\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2020-2021\",//学年\n \"schoolTerm\": \"1\",//学期\n \"title\": \"荣誉证书\",//标题\n \"author\": \"张彩霞\",//作者\n \"belong\": \"\",//归档级别\n \"attachment\": \"\"//附件\n },\n {\n \"id\": \"d8a940dc3a964cd79cb6decf5d22c042\",\n \"createBy\": \"00206\",\n \"createTime\": \"2019-12-30 10:10:04\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2019-12-30 10:10:04\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2019-2020\",\n \"schoolTerm\": \"1\",\n \"title\": \"优秀学生干部\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"f96d6112a8644e508d834043c201071d\",\n \"createBy\": \"00206\",\n \"createTime\": \"2019-12-19 08:22:36\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2019-12-19 08:22:36\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2019-2020\",\n \"schoolTerm\": \"1\",\n \"title\": \"智能装备学院星级教室评比奖状\",\n \"author\": \"张彩霞\",\n \"belong\": \"3\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"fdee2d671b4344cf9bc8dd524be2aa1a\",\n \"createBy\": \"00206\",\n \"createTime\": \"2019-12-12 12:34:16\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2019-12-12 12:34:16\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2019-2020\",\n \"schoolTerm\": \"1\",\n \"title\": \"技能节荣誉证书\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"51874f71e1f8447d993c4dbeb1d748b6\",\n \"createBy\": \"00206\",\n \"createTime\": \"2019-09-10 14:26:46\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2019-09-10 14:26:46\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2019-2020\",\n \"schoolTerm\": \"1\",\n \"title\": \"创业创新大赛院优秀奖荣誉证书\",\n \"author\": \"张彩霞\",\n \"belong\": \"7\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"a9c2c91f0add4ad2b9a63365f59319c8\",\n \"createBy\": \"00206\",\n \"createTime\": \"2019-06-20 09:18:54\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2019-06-20 09:18:54\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"2\",\n \"title\": \"中德国际班LOGO设计大赛\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"00497443849148f0b4e2fbb98cff3563\",\n \"createBy\": \"00206\",\n \"createTime\": \"2019-05-07 15:00:41\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2019-05-07 15:00:41\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"2\",\n \"title\": \"争创“宋彪班” 流动红旗授旗仪式\",\n \"author\": \"张彩霞\",\n \"belong\": \"7\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"6a00f2b8d3344fb5bf1d8ec7f6f5bbb0\",\n \"createBy\": \"00635\",\n \"createTime\": \"2018-12-07 11:16:14\",\n \"updateBy\": \"00635\",\n \"updateTime\": \"2018-12-07 11:16:14\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"1\",\n \"title\": \"学院技能节得奖\",\n \"author\": \"李天杰\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"343d37a5620f4796b05eb5d3ea92e85f\",\n \"createBy\": \"00635\",\n \"createTime\": \"2018-11-26 07:09:49\",\n \"updateBy\": \"00635\",\n \"updateTime\": \"2018-11-26 07:09:49\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"1\",\n \"title\": \"获2017-2018学年第二学期中德国际班日常考核第一名\",\n \"author\": \"李天杰\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"95589801ac88477fa252590eb584ac2f\",\n \"createBy\": \"00635\",\n \"createTime\": \"2018-09-28 20:36:06\",\n \"updateBy\": \"00635\",\n \"updateTime\": \"2018-09-28 20:36:06\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"1\",\n \"title\": \"获全院“美丽班级”称号\",\n \"author\": \"李天杰\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"4b590db8c765462991de4dc0c602099a\",\n \"createBy\": \"00635\",\n \"createTime\": \"2018-09-11 14:55:48\",\n \"updateBy\": \"00635\",\n \"updateTime\": \"2018-09-11 14:55:48\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"1\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"李天杰\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"de9ab57019d6446685555a266034e515\",\n \"createBy\": \"00635\",\n \"createTime\": \"2018-09-11 14:54:39\",\n \"updateBy\": \"00635\",\n \"updateTime\": \"2018-09-11 14:54:39\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2018-2019\",\n \"schoolTerm\": \"1\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"李天杰\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"46354323f06f415ba8c45bbe792a5327\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-07-01 07:02:39\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-07-01 07:02:39\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"获全院“美丽班级”称号\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"5031a4a316f74e63967a57bcdc88be7e\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-07-01 06:58:10\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-07-01 06:59:21\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"荣获学院第四届班主任技能大赛之主题班会二等奖\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"84695c20ba074e6cb356ea3d360a5f0f\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-06-30 09:13:23\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-06-30 09:13:23\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"de5d3bc7a9fe41d2849fd15c36198758\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-06-29 13:20:22\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-06-29 13:20:22\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"6cb603facb66463eaf00b5222966baaf\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-06-28 08:08:49\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-06-28 08:08:49\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"ab764ee41efb4757b9ad96602e3ac6bc\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-06-28 08:07:42\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-06-28 08:07:42\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"c904b6f66c0d428586f2b73504a5223f\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-06-28 07:38:44\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-06-28 07:38:44\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"e499c5f81b7b439b8304da2b9db462db\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-06-28 07:35:24\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-06-28 07:36:54\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"通过歌德学院A1\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"13a9ca3ca071486f9b53b932fcb27246\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-05-03 10:07:20\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-05-03 10:07:20\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"中德国际班“我爱记德语单词”比赛一等奖\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"f817ece8e0ba4fa6aad309b5b230821e\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-05-03 10:00:57\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-05-03 10:00:57\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"文明宿舍\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"82c50f9791074c329e5dbbeb9106eb75\",\n \"createBy\": \"00206\",\n \"createTime\": \"2018-03-14 17:43:16\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2018-03-14 17:43:16\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"2\",\n \"title\": \"2017-2018学年第一学期中德国际班日常考核\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"95ba93b54c134881b922fcdd0a79a741\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-12-14 14:10:02\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-12-14 14:10:02\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"江苏省常州技师学院第四届技能节“数独”竞赛\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"96c50111a74c476ebd15a02a7f11e2fb\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-12-13 15:40:47\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-12-13 15:40:47\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"“2017年江苏省机器人公开赛”志愿服务工作\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"bb2298d99a924bbda9528966599fc0ee\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-12-12 11:30:52\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-12-12 11:30:52\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"江苏省常州技师学院第四届技能节暨机械系技能节\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"49d432acb9e847d18fa56b61275e625b\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-12-12 11:29:22\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-12-12 11:29:22\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"江苏省常州技师学院第四届技能节暨机械系技能节\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"8be6df13512d461e93917592b16a0780\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-12-12 11:28:12\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-12-12 11:28:12\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"江苏省常州技师学院第四届技能节暨机械系技能节\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"ce38f0b8ad714b49889a493ed33e45f8\",\n \"createBy\": \"00421\",\n \"createTime\": \"2017-11-30 09:38:45\",\n \"updateBy\": \"00421\",\n \"updateTime\": \"2017-11-30 09:38:45\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"2017秋季游艺运动群体类综合投篮项目三等奖\",\n \"author\": \"马小燕\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"baac8c11bec0419a9e4b1018e98a9ed6\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-11-02 09:25:19\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-12-16 19:20:28\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"最美家书评比\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"c554470df2694419ae64591d13229c25\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-10-10 14:49:40\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-10-10 14:49:40\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"2017级新生军训综合评比一等奖\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n },\n {\n \"id\": \"c8a43b3c72674cd6aafab4e3c7a18d49\",\n \"createBy\": \"00206\",\n \"createTime\": \"2017-10-10 14:47:43\",\n \"updateBy\": \"00206\",\n \"updateTime\": \"2017-10-10 14:47:43\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0223251708\",\n \"schoolYear\": \"2017-2018\",\n \"schoolTerm\": \"1\",\n \"title\": \"2017级新生军训会操一等奖\",\n \"author\": \"张彩霞\",\n \"belong\": \"\",\n \"attachment\": \"\"\n }\n ],\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/teachclassroomassign/getClassRoomByClassCode": { "get": { "summary": "班级概况-班级教室安排", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": [ "0223251708" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "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": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\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 \"buildingNo\": null,//楼栋号\r\n \"position\": null,//教室号\r\n \"classCode\": null,\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/queryStuNumByClassCode": { "get": { "summary": "班级概况-学生概况", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": [ "0223251708" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "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": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudent/fearchStuNumByClassCode": { "get": { "summary": "班级概况-学生住宿", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": [ "0223251708" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "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": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"id\": null,\n \"createBy\": null,\n \"createTime\": null,\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": null,\n \"tenantId\": null,\n \"remarks\": null,\n \"roomNo\": null,\n \"stuNo\": null,\n \"isLeader\": null,\n \"bedNo\": null,\n \"pic\": null,\n \"realName\": null,\n \"classNo\": null,\n \"phone\": null,\n \"tel\": null,\n \"teacherRealName\": null,\n \"teacherPhone\": null,\n \"teacherNo\": null,\n \"deptName\": null,\n \"bedNum\": null,\n \"notBedNo\": null,\n \"stuNum\": 0,//住宿人数\n \"manStuNum\": 0,//住宿男生人数\n \"girlStuNum\": 0,//住宿女生人数\n \"classCode\": null,\n \"nums\": null,\n \"buildingNo\": null,\n \"bedNo1\": null,\n \"bedNo2\": null,\n \"bedNo3\": null,\n \"bedNo4\": null,\n \"bedNo5\": null,\n \"bedNo6\": null,\n \"isHaveAir\": null,\n \"deptCode\": null\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stupunlish/queryPunlishNumByClass": { "get": { "summary": "班级概况-处罚处分", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": [ "0223251708" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "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": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classpublicity/queryDataByClassCode": { "get": { "summary": "班级概况-宣传记录", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": [ "0223251708" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "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": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass/classExportData": { "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 \"grade\": \"\",//入学年份\r\n \"teacherRealName\": \"\",//班主任姓名\r\n \"classStatus\": \"\",//班级状态\r\n \"deptCode\": \"\",//学院\r\n \"isUnion\": 0,//联院\r\n \"classNo\": \"\",//班号\r\n \"stuLoseRate\": \"\"//流失率\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classassessmentsettle/initAssessment": { "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": {} } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass/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": "grade", "in": "query", "description": "入学年份", "required": false, "example": "2025", "schema": { "type": "string" } }, { "name": "teacherRealName", "in": "query", "description": "班主任姓名", "required": false, "example": "杨", "schema": { "type": "string" } }, { "name": "classStatus", "in": "query", "description": "班级状态", "required": false, "example": "0", "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "学院编码", "required": false, "example": "16", "schema": { "type": "string" } }, { "name": "isUnion", "in": "query", "description": "是否联院", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "classNo", "in": "query", "description": "班号", "required": false, "example": "2530", "schema": { "type": "string" } }, { "name": "stuLoseRate", "in": "query", "description": "流失率", "required": false, "example": "0", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass": { "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 \"classCode\": \"1123022608\",//班级代码\r\n \"className\": \"智能装备2608\",//班级名称\r\n \"classNo\": \"2608\",//班号\r\n \"classProName\": \"25机电一体化技术[四](高)(星宇)\",//班级规范名称\r\n \"majorCode\": \"112302\",//专业代码\r\n \"enterDate\": \"2025-09-01 00:00:00\",//入学时间\r\n \"teacherNo\": \"00562\",//班主任工号\r\n \"teacherRealName\": \"莫玉华\",//班主任姓名\r\n \"grade\": \"2026\",//入学年份\r\n \"preStuNum\": 100,//预计人数\r\n \"deptCode\": \"11\"//学院编码\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "c7b6d0ae50b0cd3e8f20b7e5f4bd20bc", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass/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\":\"c7b6d0ae50b0cd3e8f20b7e5f4bd20bc\",\r\n \"classCode\": \"1123022608\",//班级代码\r\n \"className\": \"智能装备2608\",//班级名称\r\n \"classNo\": \"2608\",//班号\r\n \"classProName\": \"25机电一体化技术[四](高)(星宇)\",//班级规范名称\r\n \"majorCode\": \"112302\",//专业代码\r\n \"enterDate\": \"2025-09-01 00:00:00\",//入学时间\r\n \"teacherNo\": \"00562\",//班主任工号\r\n \"teacherRealName\": \"莫玉华\",//班主任姓名\r\n \"grade\": \"2026\",//入学年份\r\n \"preStuNum\": 100,//预计人数\r\n \"deptCode\": \"11\"//学院编码\r\n}" } } }, "responses": { "424": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudentinfo/queryDataByPage": { "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": "stuStatus", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "isRoom", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "enrollStatus", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "temporaryyeYear", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "total", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "parkingNo", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classStatus", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "completeRate", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "isUnion", "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": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"5e4e567950fe4122a6c5d149a4cacb52\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",//学院编码\r\n \"deptName\": \"新能源学院\",//学院\r\n \"majorCode\": null,//专业代码\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",//专业名称\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"张裕涛\",//姓名\r\n \"gender\": \"1\",//性别\r\n \"idCard\": \"320581********251x\",//身份证号\r\n \"idNumber\": null,\r\n \"phone\": \"151****0386\",//手机号\r\n \"teacherNo\": \"00306\",//班主任工哈\r\n \"education\": \"4\",//文化程度\r\n \"enrollStatus\": \"0\",//学籍状态\r\n \"householdAddress\": \"江苏省苏州市常熟市\",//籍贯\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253534\",//学号\r\n \"isClassLeader\": \"0\",//是否班干部\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",//班级代码\r\n \"className\": \"新能源2535\",//班级名称\r\n \"stuStatus\": \"1\",//学生状态\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",//是否允许进出\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"961e00ea4c724123b967a84e2807b71b\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"鲁佳宏\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"361127********5735\",\r\n \"idNumber\": null,\r\n \"phone\": \"184****1121\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江西省上饶市余干县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253532\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ff626ea29b4547a6b9ba028472ca2965\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"郁修远\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"321322********2414\",\r\n \"idNumber\": null,\r\n \"phone\": \"193****0630\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省宿迁市沭阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253531\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"21d4b25c784b4209a4f1dd74cbe99ca0\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"阙思诺\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"341523********5514\",\r\n \"idNumber\": null,\r\n \"phone\": \"134****1675\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省六安市舒城县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253529\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"c3c52f3e7e5b4639a4014d38692d1504\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"韦金城\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320721********4625\",\r\n \"idNumber\": null,\r\n \"phone\": \"197****7191\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省连云港市赣榆县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253528\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ac48dafb5914435b8cbce13e0bcb6340\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"胡艳\",\r\n \"gender\": \"0\",\r\n \"idCard\": \"340823********4440\",\r\n \"idNumber\": null,\r\n \"phone\": \"173****0557\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省安庆市枞阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253527\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"6aa4be3b099f472094629dd3710f3a3a\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"吴易轩\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320481********0812\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省常州市溧阳市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253526\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"520d95db3b4940cf93ed94220256bfd8\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟宣文\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"510321********3791\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"四川省自贡市荣县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253524\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"8412fd8172ed441eac4bd04b10561ee9\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟前峰\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320382********3652\",\r\n \"idNumber\": null,\r\n \"phone\": \"188****2481\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省徐州市邳州市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253523\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"4778abee6f654bd3970123af43690ef5\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"赵朴单\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320282********0391\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省无锡市宜兴市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253522\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n }\r\n ],\r\n \"total\": 41039,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 4104\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/saveStu": { "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 \"idCard\": \"620000196402091674\",//身份证号\r\n \"gender\": \"1\",//性别\r\n \"birthday\": \"2010-03-23\",//出生日期\r\n \"realName\": \"张大风\",//姓名\r\n \"householdAddress\": \"江苏省苏州市常熟市\",//籍贯\r\n \"classCode\": \"1515072544\",//班级代码\r\n \"stuNo\": \"111111111111\",//学号\r\n \"colourSense\": \"1\",//辨色力\r\n \"veteran\": \"0\",//退伍军人\r\n \"politicsStatus\": \"共青团员\",//政治面貌\r\n \"national\": \"81b0a10496edfdea81d9db6a25331be9\",//民族id\r\n \"isLower\": \"0\",//是否10万以下民族\r\n \"seekText\": \"1111\",//既往病史\r\n \"education\": \"1\",//入学前文化程度\r\n \"schoolName\": \"111\",//入学前毕业院校\r\n \"schoolProvince\": \"1\"//毕业学校省市\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"5e4e567950fe4122a6c5d149a4cacb52\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",//学院编码\r\n \"deptName\": \"新能源学院\",//学院\r\n \"majorCode\": null,//专业代码\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",//专业名称\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"张裕涛\",//姓名\r\n \"gender\": \"1\",//性别\r\n \"idCard\": \"320581********251x\",//身份证号\r\n \"idNumber\": null,\r\n \"phone\": \"151****0386\",//手机号\r\n \"teacherNo\": \"00306\",//班主任工哈\r\n \"education\": \"4\",//文化程度\r\n \"enrollStatus\": \"0\",//学籍状态\r\n \"householdAddress\": \"江苏省苏州市常熟市\",//籍贯\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253534\",//学号\r\n \"isClassLeader\": \"0\",//是否班干部\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",//班级代码\r\n \"className\": \"新能源2535\",//班级名称\r\n \"stuStatus\": \"1\",//学生状态\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",//是否允许进出\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"961e00ea4c724123b967a84e2807b71b\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"鲁佳宏\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"361127********5735\",\r\n \"idNumber\": null,\r\n \"phone\": \"184****1121\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江西省上饶市余干县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253532\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ff626ea29b4547a6b9ba028472ca2965\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"郁修远\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"321322********2414\",\r\n \"idNumber\": null,\r\n \"phone\": \"193****0630\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省宿迁市沭阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253531\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"21d4b25c784b4209a4f1dd74cbe99ca0\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"阙思诺\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"341523********5514\",\r\n \"idNumber\": null,\r\n \"phone\": \"134****1675\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省六安市舒城县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253529\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"c3c52f3e7e5b4639a4014d38692d1504\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"韦金城\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320721********4625\",\r\n \"idNumber\": null,\r\n \"phone\": \"197****7191\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省连云港市赣榆县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253528\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ac48dafb5914435b8cbce13e0bcb6340\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"胡艳\",\r\n \"gender\": \"0\",\r\n \"idCard\": \"340823********4440\",\r\n \"idNumber\": null,\r\n \"phone\": \"173****0557\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省安庆市枞阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253527\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"6aa4be3b099f472094629dd3710f3a3a\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"吴易轩\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320481********0812\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省常州市溧阳市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253526\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"520d95db3b4940cf93ed94220256bfd8\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟宣文\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"510321********3791\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"四川省自贡市荣县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253524\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"8412fd8172ed441eac4bd04b10561ee9\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟前峰\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320382********3652\",\r\n \"idNumber\": null,\r\n \"phone\": \"188****2481\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省徐州市邳州市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253523\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"4778abee6f654bd3970123af43690ef5\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"赵朴单\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320282********0391\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省无锡市宜兴市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253522\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n }\r\n ],\r\n \"total\": 41039,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 4104\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/stuDataExport": { "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\t\"classCode\": \"\",//班级代码\r\n\t\"grade\": \"\",//入学年份\r\n\t\"stuStatus\": \"\",//学生状态\r\n\t\"isRoom\": \"\",//是否住宿\r\n\t\"deptCode\": \"13\",//学院编码\r\n //基础信息要导出的字段\r\n\t\"basicStudentInfo\": [\r\n\t\t\"realName\", // 姓名\r\n\t\t\"oldName\", // 曾用名\r\n\t\t\"idCard\", // 身份证\r\n\t\t\"gender\", // 性别\r\n\t\t\"birthday\", // 出生日期\r\n\t\t\"householdAddress\", // 户口所在地\r\n\t\t\"politicsStatus\", // 政治面貌\r\n\t\t\"national\", // 民族\r\n\t\t\"isLower\", // 是否10万以下民族\r\n\t\t\"colourSense\", // 辨色力\r\n\t\t\"eyeLeft\", // 裸眼视力(左)\r\n\t\t\"eyeRight\", // 裸眼视力(右)\r\n\t\t\"weight\", // 体重\r\n\t\t\"height\", // 身高\r\n\t\t\"careType\", // 需关爱类型\r\n\t\t\"email\", // 电子邮箱\r\n\t\t\"qq\", // QQ号/微信号\r\n\t\t\"phone\", // 本人电话\r\n\t\t\"veteran\", // 退伍军人\r\n\t\t\"seekText\", // 既往病史\r\n\t\t\"advantage\" // 本人特长\r\n\t],\r\n //学习经历要导出的字段\r\n\t\"basicStudentEducation\": [\r\n\t\t\"education\", // 入学前文化程度\r\n\t\t\"examScore\", // 中考分数\r\n\t\t\"examNo\", // 中考准考证号\r\n\t\t\"temporaryyeYear\", // 本校借读学年\r\n\t\t\"schoolName\", // 入学前毕业学校\r\n\t\t\"schoolProvince\", // 毕业学校省市\r\n\t\t\"position\" // 曾任职务\r\n\t],\r\n //家庭信息要导出的字段\r\n\t\"basicStudentHome\": [\r\n\t\t\"detailedHouseholdAddress\", // 户口详细地址\r\n\t\t\"householdProperties\", // 户口性质\r\n\t\t\"liveAddress\", // 居住详细地址\r\n\t\t\"isTemp\", // 是否租住\r\n\t\t\"incomeSource\", // 家庭主要收入来源\r\n\t\t\"incomeMoney\", // 家庭年收入(万)\r\n\t\t\"incomePerMoney\", // 家庭人均收入(万)\r\n\t\t\"homeDifficulty\", // 是否低保\r\n\t\t\"livewith\", // 共同居住人\r\n\t\t\"fatherName\", // 父亲姓名\r\n\t\t\"fatherPhone\", // 父亲手机号\r\n\t\t\"fatcherIdCard\", // 父亲身份证号\r\n\t\t\"fatherWorkAddress\", // 父亲工作单位\r\n\t\t\"matherName\", // 母亲姓名\r\n\t\t\"matherPhone\", // 母亲手机号\r\n\t\t\"matherIdCard\", // 母亲身份证号\r\n\t\t\"matherWorkAddress\" // 母亲工作单位\r\n\t],\r\n //专业信息要导出的字段\r\n\t\"basicStudentMajorClass\": [\r\n\t\t\"enterDate\", // 入学日期\r\n\t\t\"deptName\", // 学院\r\n\t\t\"deptCode\", // 专业系部\r\n\t\t\"majorName\", // 专业名称\r\n\t\t\"stuNo\", // 学号\r\n\t\t\"schoolRollNumber\", // 学籍号\r\n\t\t\"schoolRoll\", // 学籍\r\n\t\t\"studentStatus\", // 状态\r\n\t\t\"majorLevel\", // 培养层次\r\n\t\t\"majorYears\", // 学制\r\n\t\t\"studyType\", // 学习形式\r\n\t\t\"unionStuNo\", // 联院学号\r\n\t\t\"middleNumber\", // 中技证号\r\n\t\t\"middleTime\", // 中技段结束时间\r\n\t\t\"highNumber\", // 高技证号\r\n\t\t\"highTime\", // 高技段结束时间\r\n\t\t\"technicianNumber\", // 技师证号\r\n\t\t\"graduateNumber\", // 毕业证号\r\n\t\t\"graduateDate\", // 毕业时间\r\n\t\t\"pauseDate\" // 结业时间\r\n\t],\r\n //班级信息要导出的字段\r\n\t\"basicStudentClass\": [\r\n\t\t\"className\", // 班级名称\r\n\t\t\"classNo\", // 班号\r\n\t\t\"classRoomPosition\", // 教室位置\r\n\t\t\"isRoomNo\", // 就读方式\r\n\t\t\"teacherRealName\", // 班主任\r\n\t\t\"teacherTel\", // 班主任联系电话\r\n\t\t\"roomNo\", // 宿舍号\r\n\t\t\"dormBuildingPhone\", // 宿舍联系电话\r\n\t\t\"bankName\", // 中职卡开户行\r\n\t\t\"bankCard\", // 中职卡号\r\n\t\t\"socialBank\", // 社保卡开户行\r\n\t\t\"socialBankNo\", // 社保卡号\r\n\t\t\"parkingNo\", // 停车证号\r\n\t\t\"classQq\", // 班级QQ群号\r\n\t\t\"currentGrade\" // 年级\r\n\t],\r\n //成教信息要导出的字段\r\n\t\"basicStudentAdultEducation\": [\r\n\t\t\"adultSchoolName\", // 成教学院\r\n\t\t\"adultEducation\", // 成教学历\r\n\t\t\"adultExamNo\", // 成教考试号\r\n\t\t\"adultEnterDate\", // 成教入籍日期\r\n\t\t\"adultNo\", // 成教学号\r\n\t\t\"adultMajorName\", // 成教专业\r\n\t\t\"computerScore\", // 成教计算机成绩\r\n\t\t\"englishScore\" // 成教英语成绩\r\n\t],\r\n //学籍状态\r\n\t\"enrollStatus\": \"\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"5e4e567950fe4122a6c5d149a4cacb52\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",//学院编码\r\n \"deptName\": \"新能源学院\",//学院\r\n \"majorCode\": null,//专业代码\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",//专业名称\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"张裕涛\",//姓名\r\n \"gender\": \"1\",//性别\r\n \"idCard\": \"320581********251x\",//身份证号\r\n \"idNumber\": null,\r\n \"phone\": \"151****0386\",//手机号\r\n \"teacherNo\": \"00306\",//班主任工哈\r\n \"education\": \"4\",//文化程度\r\n \"enrollStatus\": \"0\",//学籍状态\r\n \"householdAddress\": \"江苏省苏州市常熟市\",//籍贯\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253534\",//学号\r\n \"isClassLeader\": \"0\",//是否班干部\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",//班级代码\r\n \"className\": \"新能源2535\",//班级名称\r\n \"stuStatus\": \"1\",//学生状态\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",//是否允许进出\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"961e00ea4c724123b967a84e2807b71b\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"鲁佳宏\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"361127********5735\",\r\n \"idNumber\": null,\r\n \"phone\": \"184****1121\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江西省上饶市余干县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253532\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ff626ea29b4547a6b9ba028472ca2965\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"郁修远\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"321322********2414\",\r\n \"idNumber\": null,\r\n \"phone\": \"193****0630\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省宿迁市沭阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253531\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"21d4b25c784b4209a4f1dd74cbe99ca0\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"阙思诺\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"341523********5514\",\r\n \"idNumber\": null,\r\n \"phone\": \"134****1675\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省六安市舒城县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253529\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"c3c52f3e7e5b4639a4014d38692d1504\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"韦金城\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320721********4625\",\r\n \"idNumber\": null,\r\n \"phone\": \"197****7191\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省连云港市赣榆县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253528\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ac48dafb5914435b8cbce13e0bcb6340\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"胡艳\",\r\n \"gender\": \"0\",\r\n \"idCard\": \"340823********4440\",\r\n \"idNumber\": null,\r\n \"phone\": \"173****0557\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省安庆市枞阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253527\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"6aa4be3b099f472094629dd3710f3a3a\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"吴易轩\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320481********0812\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省常州市溧阳市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253526\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"520d95db3b4940cf93ed94220256bfd8\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟宣文\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"510321********3791\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"四川省自贡市荣县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253524\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"8412fd8172ed441eac4bd04b10561ee9\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟前峰\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320382********3652\",\r\n \"idNumber\": null,\r\n \"phone\": \"188****2481\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省徐州市邳州市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253523\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"4778abee6f654bd3970123af43690ef5\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"赵朴单\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320282********0391\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省无锡市宜兴市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253522\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n }\r\n ],\r\n \"total\": 41039,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 4104\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/getDownPic": { "get": { "summary": "TODO:导出头像", "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\t\"classCode\": \"\",//班级代码必填\r\n\t\"grade\": \"\",//入学年份\r\n\t\"stuStatus\": \"\",//学生状态\r\n\t\"isRoom\": \"\",//是否住宿\r\n\t\"deptCode\": \"13\",//学院编码\r\n //学籍状态\r\n\t\"enrollStatus\": \"\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"5e4e567950fe4122a6c5d149a4cacb52\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",//学院编码\r\n \"deptName\": \"新能源学院\",//学院\r\n \"majorCode\": null,//专业代码\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",//专业名称\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"张裕涛\",//姓名\r\n \"gender\": \"1\",//性别\r\n \"idCard\": \"320581********251x\",//身份证号\r\n \"idNumber\": null,\r\n \"phone\": \"151****0386\",//手机号\r\n \"teacherNo\": \"00306\",//班主任工哈\r\n \"education\": \"4\",//文化程度\r\n \"enrollStatus\": \"0\",//学籍状态\r\n \"householdAddress\": \"江苏省苏州市常熟市\",//籍贯\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253534\",//学号\r\n \"isClassLeader\": \"0\",//是否班干部\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",//班级代码\r\n \"className\": \"新能源2535\",//班级名称\r\n \"stuStatus\": \"1\",//学生状态\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",//是否允许进出\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"961e00ea4c724123b967a84e2807b71b\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"鲁佳宏\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"361127********5735\",\r\n \"idNumber\": null,\r\n \"phone\": \"184****1121\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江西省上饶市余干县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253532\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ff626ea29b4547a6b9ba028472ca2965\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"郁修远\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"321322********2414\",\r\n \"idNumber\": null,\r\n \"phone\": \"193****0630\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省宿迁市沭阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253531\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"21d4b25c784b4209a4f1dd74cbe99ca0\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"阙思诺\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"341523********5514\",\r\n \"idNumber\": null,\r\n \"phone\": \"134****1675\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省六安市舒城县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253529\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"c3c52f3e7e5b4639a4014d38692d1504\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"韦金城\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320721********4625\",\r\n \"idNumber\": null,\r\n \"phone\": \"197****7191\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省连云港市赣榆县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253528\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"ac48dafb5914435b8cbce13e0bcb6340\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"胡艳\",\r\n \"gender\": \"0\",\r\n \"idCard\": \"340823********4440\",\r\n \"idNumber\": null,\r\n \"phone\": \"173****0557\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"安徽省安庆市枞阳县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253527\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"6aa4be3b099f472094629dd3710f3a3a\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"吴易轩\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320481********0812\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省常州市溧阳市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253526\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"520d95db3b4940cf93ed94220256bfd8\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟宣文\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"510321********3791\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"四川省自贡市荣县\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253524\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"8412fd8172ed441eac4bd04b10561ee9\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"钟前峰\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320382********3652\",\r\n \"idNumber\": null,\r\n \"phone\": \"188****2481\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"4\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省徐州市邳州市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253523\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n },\r\n {\r\n \"id\": \"4778abee6f654bd3970123af43690ef5\",\r\n \"createBy\": null,\r\n \"deptCode\": \"16\",\r\n \"deptName\": \"新能源学院\",\r\n \"majorCode\": null,\r\n \"majorName\": \"电气自动化设备安装与维修[四](高)\",\r\n \"arrangement\": null,\r\n \"sourceOfStudents\": null,\r\n \"educationalSystems\": null,\r\n \"realName\": \"赵朴单\",\r\n \"gender\": \"1\",\r\n \"idCard\": \"320282********0391\",\r\n \"idNumber\": null,\r\n \"phone\": \"\",\r\n \"teacherNo\": \"00306\",\r\n \"education\": \"5\",\r\n \"enrollStatus\": \"0\",\r\n \"householdAddress\": \"江苏省无锡市宜兴市\",\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"createTime\": null,\r\n \"stuNo\": \"162301253522\",\r\n \"isClassLeader\": \"0\",\r\n \"graduateNumber\": null,\r\n \"oldName\": \"无\",\r\n \"basicStudentInfoDetailVO\": null,\r\n \"basicStudentEducation\": null,\r\n \"basicStudentHome\": null,\r\n \"homeDetailList\": null,\r\n \"basicStudentMajorClassVO\": null,\r\n \"basicStudentAdultEducation\": null,\r\n \"classCode\": \"1623012535\",\r\n \"className\": \"新能源2535\",\r\n \"stuStatus\": \"1\",\r\n \"parkingNo\": null,\r\n \"isInout\": \"1\",\r\n \"completeRate\": \"20%\",\r\n \"national\": null,\r\n \"telPhone\": null,\r\n \"headImg\": null,\r\n \"jzPhone\": null,\r\n \"religiousBelief\": null\r\n }\r\n ],\r\n \"total\": 41039,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 4104\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/updateStuSimpleInfo": { "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": { "realName": "张裕涛", "idCard": "32058120061201251x", "oldName": "无", "stuNo": "162301253534" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } } } }, "security": [] } }, "/api/basic/basicstudentinfo/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": "1", "schema": { "type": "string" } }, { "name": "stuNo", "in": "query", "description": "", "required": false, "example": "162301253534", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/resetPassWord": { "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": "5e4e567950fe4122a6c5d149a4cacb52", "deptName": "新能源学院", "majorName": "电气自动化设备安装与维修[四](高)", "realName": "张裕涛", "gender": "1", "idCard": "32058120061201251x", "phone": "15162580386", "teacherNo": "00306", "education": "4", "enrollStatus": "0", "householdAddress": "江苏省苏州市常熟市", "stuNo": "162301253534", "isClassLeader": "1", "oldName": "无", "classCode": "1623012535", "className": "新能源2535", "stuStatus": "1", "isInout": "1", "completeRate": "20%" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/editIsleader": { "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\": \"43ce2fe0-8410-11eb-a06b-0242ac130002\",\r\n \"stuNo\": \"021103090201\",\r\n \"isClassLeader\": 1//是否为班干部1是0否\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/updateInout": { "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 \"stuNo\": \"162301253534\",\r\n \"isInout\": 1//是否能进出1是0否\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api//basic/basicnation/getNationalDict": { "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//basic/basicpoliticsstatusbase/getPoliticsStatusDict": { "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": {} } } } } }, "security": [] } }, "/api/admin/dict/queryDictByTypeList": { "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 \"typeList\": [\r\n \"care_type\",//需关爱类型\r\n \"eye_status\",//辨色力\r\n \"veteran_status\",//是否退伍军人\r\n \"pre_school_education\",//入学前文化程度\r\n \"school_province\",//毕业学校省市\r\n \"house_hold_properties\",//户口性质\r\n \"is_temp\",//是否租住\r\n \"income_source\",//家庭主要收入来源\r\n \"home_difficulty\",//是否低保\r\n \"basic_major_level\",//专业培养层次\r\n \"student_status\",//学生状态\r\n \"religious_belief\"//宗教信仰\r\n ]\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/studenthomedetail": { "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 \"appellation\": \"1\",//关系\r\n \"realName\": \"李四\",//姓名\r\n \"tel\": \"19851991111\",//手机号\r\n \"idCard\": \"320404200012178489\",//身份证号\r\n \"workAddress\": \"测试\",//地址\r\n \"politicsStatus\": \"1\",\r\n \"health\": \"1\",//身体状况\r\n \"stuNo\": \"162301253534\"//学号\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/family_member_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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/health_status": { "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudentinfo/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": { "basicStudentInfo": { "id": "8d7aa446f2c347d0a84c1f9bb2c46213", "createBy": "admin", "createTime": "2025-08-29 16:09:54", "oldName": "无", "idCard": "32058120061201251x", "birthday": "2006-12-01 00:00:00", "politicsStatus": "群众", "national": "81b0a10496edfdea81d9db6a25331be9", "colourSense": "1", "height": 172, "weight": 50, "careType": "1", "phone": "15162580386", "veteran": "0", "seekText": "无病史", "advantage": "测试", "religiousBelief": "1", "isLower": "0", "stuNo": "162301253534", "eyeLeft": "3.0", "eyeRight": "3.1", "email": "1@qq.com", "qq": "1134455", "socialBank": "234324", "socialBankNo": "52354" }, "saveStuInfo": { "gender": "" }, "basicStudentEducation": { "id": "f4f0642442744b87a35ece041e3e8ff6", "createTime": "2025-08-29 16:09:54", "stuNo": "162301253534", "education": "4", "examScore": "563", "schoolName": "江苏省常熟中等专业学校", "schoolProvince": "1", "position": "无职务", "examNo": "12343242" }, "basicStudentHome": { "id": "78e2519a95fe76dc604be36da095e5e0", "createTime": "2026-01-13 15:45:41", "stuNo": "162301253534", "householdAddress": "江苏省苏州市常熟市", "householdProperties": "1", "liveAddress": "1111111", "isTemp": "0", "incomeSource": "3", "incomeMoney": 10, "incomePerMoney": 10, "homeDifficulty": "0" }, "homeDetailList": [ { "id": "f7d5ab3807424dbbeccb473db94246ac", "createTime": "2026-01-13 15:36:41", "appellation": "1", "realName": "李四", "tel": "19851991111", "idCard": "320404200012178489", "workAddress": "测试", "politicsStatus": "1", "health": "1" } ], "basicStudentMajorClassVO": { "id": "01dc533f18944c63ad20599d77d1d84a", "createTime": "2025-08-29 16:09:54", "stuNo": "162301253534", "deptName": "新能源学院", "deptCode": "16", "majorName": "电气自动化设备安装与维修[四](高)", "stuStatus": "1", "majorLevel": "3", "majorYears": "4", "className": "新能源2535", "classCode": "1623012535", "classNo": "2535", "teacherNo": "00306", "teacherRealName": "王海燕", "telPhone": "13914343912", "classQq": "0", "middleNumber": "423423432", "middleTime": "2026-01-14", "highNumber": "454656", "highTime": "2026-01-22", "technicianNumber": "22222", "graduateNumber": "33", "graduateDate": "2026-01-14", "pauseDate": "2026-01-29", "bankName": "234324324", "bankCard": "43523", "parkingNo": "23424" }, "basicStudentAdultEducation": { "id": "ccba920294f791b2ee674720f2e2211f", "createTime": "2026-01-13 15:45:42", "schoolName": "测试", "education": "22", "examNo": "22", "enterDate": "2026-01-07", "adultNo": "222", "majorName": "22", "computerScore": "333", "englishScore": "33" }, "stuNo": "162301253534", "realName": "张裕涛", "gender": "1", "classQQ": "0", "isTeacher": "1" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterevaluation/add": { "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\":\"fd83965c0fd033e945d71990a25122ca\",\r\n \"remarks\": \"16:30分2216-1#赵雨在1#2#宿舍大门口捡到现金上交、拾金不昧!\", //情况说明\r\n \"classCode\": \"1223012310\", //班级代码\r\n \"assessmentCategory\": \"3\", //考核项目\r\n \"assessmentPoint\": \"10\", //考核指标\r\n \"score\": 5.00, //分数\r\n \"type\": \"1\", //类型\r\n \"recordDate\": \"2026-01-05\" //考核时间\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterevaluation/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": "type", "in": "query", "description": "类型(加减分类型)", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "startTime", "in": "query", "description": "开始时间", "required": false, "example": "2022-01-05", "schema": { "type": "string" } }, { "name": "endTime", "in": "query", "description": "结束时间", "required": false, "example": "2026-01-05", "schema": { "type": "string" } }, { "name": "assessmentCategory", "in": "query", "description": "考核项目", "required": false, "example": "3", "schema": { "type": "string" } }, { "name": "assessmentPoint", "in": "query", "description": "考核指标", "required": false, "example": "10", "schema": { "type": "string" } }, { "name": "deptCode", "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": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"5b998434112a44eea24b7cc9e743d9bd\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-05 16:59:42\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"16:30分2216-1#赵雨在1#2#宿舍大门口捡到现金上交、拾金不昧!\",//情况说明\r\n \"classMasterCode\": \"00498\",//班主任工号\r\n \"virtualClassNo\": \"2310\",//班号\r\n \"classCode\": \"1223012310\",//班级代码\r\n \"assessmentCategory\": \"3\",//考核项目\r\n \"assessmentPoint\": \"10\",//考核指标\r\n \"score\": 5.00,//分数\r\n \"type\": \"1\",//类型\r\n \"recordDate\": \"2024-01-05\",//考核时间\r\n \"outerId\": \"e9e033e0a69056de29363afe616007e2\",\r\n \"realName\": \"陈惠忠\",//班主任姓名\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"9ac4d501d60b1f1def3c5ddbd56f55e7\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-05 11:48:29\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"中午2001班4125舍李骏阳,周園靖带饭丛窗户翻进宿舍\",\r\n \"classMasterCode\": \"00644\",\r\n \"virtualClassNo\": \"2001\",\r\n \"classCode\": \"1215092001\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 5.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-05\",\r\n \"outerId\": \"ef52b6f8991771594593fdd4c77c7c27\",\r\n \"realName\": \"许佳妮\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"3fd74ac3a94a0cc7dabf3c7c8ce5b7cf\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-05 07:55:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1112舍晚巡视吵闹\",\r\n \"classMasterCode\": \"00720\",\r\n \"virtualClassNo\": \"2313\",\r\n \"classCode\": \"1112062313\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-05\",\r\n \"outerId\": \"e30ff9a20bb6e195a48b49a1a3582d35\",\r\n \"realName\": \"孙萍\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"64dd8fa171b4997d64ea871dd51e1da8\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-04 07:48:49\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1628舍提醒三次后还吵闹。\",\r\n \"classMasterCode\": \"00614\",\r\n \"virtualClassNo\": \"2238\",\r\n \"classCode\": \"1412052238\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-04\",\r\n \"outerId\": \"9c2c4324d1675fbe1eb3e48ce332438a\",\r\n \"realName\": \"孙剑锋\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"baaf1880604dcbd5bd96ad2b6e5740c5\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-03 17:54:17\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"傍晚巡视发现4623舍有同学放鞭炮\",\r\n \"classMasterCode\": \"00726\",\r\n \"virtualClassNo\": \"2251\",\r\n \"classCode\": \"1517042251\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 5.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-03\",\r\n \"outerId\": \"0612cd2ba21299ad92ac8e805820e6ce\",\r\n \"realName\": \"曹鲁政\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"c125f91d2b6fdfbf07633b8ba641bf7c\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-03 07:51:49\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1619宿舍提醒三次不熄灯而且吵闹\",\r\n \"classMasterCode\": \"00629\",\r\n \"virtualClassNo\": \"2240\",\r\n \"classCode\": \"1417012240\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-03\",\r\n \"outerId\": \"2c26820e2c7f9e8cf6671e19ef1aa989\",\r\n \"realName\": \"王林涛\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"91f2016f200ba9f61fd8051af70f42bd\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-28 07:51:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1630宿舍十一点后吵闹\",\r\n \"classMasterCode\": \"00614\",\r\n \"virtualClassNo\": \"2238\",\r\n \"classCode\": \"1412052238\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-28\",\r\n \"outerId\": \"49409176782b59421ef95fb499bc0f5f\",\r\n \"realName\": \"孙剑锋\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"912d02caf66a6782f47b5792deb8f72a\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-28 07:50:22\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1628宿舍十一点后吵闹\",\r\n \"classMasterCode\": \"00614\",\r\n \"virtualClassNo\": \"2238\",\r\n \"classCode\": \"1412052238\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-28\",\r\n \"outerId\": \"ec7b8d98ebcd829eb9caec986d7c1f0b\",\r\n \"realName\": \"孙剑锋\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"1e41f7f648e170dc7f38746c6a239121\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-27 08:10:46\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"3117晚上吵闹,在宿舍开店卖零食\",\r\n \"classMasterCode\": \"00175\",\r\n \"virtualClassNo\": \"2309\",\r\n \"classCode\": \"1217032309\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 5.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-27\",\r\n \"outerId\": \"7d1350124a89f288436d10c95e4561f7\",\r\n \"realName\": \"郭成东\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"77a0cfa81a0cbaf6a7b5e99ef7ae2c03\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-27 07:51:08\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1622宿舍提醒三次后仍吵闹\",\r\n \"classMasterCode\": \"00410\",\r\n \"virtualClassNo\": \"2239\",\r\n \"classCode\": \"1412062239\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-27\",\r\n \"outerId\": \"00e600799b549f47e5a85385c03a7ca7\",\r\n \"realName\": \"徐吉婷\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n }\r\n ],\r\n \"total\": 4178,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 418\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterevaluation/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": [ "111" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterevaluation/exportData": { "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": { "startTime": "2025-06-03", "endTime": "2026-01-31", "assessmentCategory": "", "assessmentPoint": "", "deptCode": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterevaluation/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "学院代码", "required": false, "example": "fd83965c0fd033e945d71990a25122ca", "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 \"records\": [\r\n {\r\n \"id\": \"5b998434112a44eea24b7cc9e743d9bd\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-05 16:59:42\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"16:30分2216-1#赵雨在1#2#宿舍大门口捡到现金上交、拾金不昧!\",//情况说明\r\n \"classMasterCode\": \"00498\",//班主任工号\r\n \"virtualClassNo\": \"2310\",//班号\r\n \"classCode\": \"1223012310\",//班级代码\r\n \"assessmentCategory\": \"3\",//考核项目\r\n \"assessmentPoint\": \"10\",//考核指标\r\n \"score\": 5.00,//分数\r\n \"type\": \"1\",//类型\r\n \"recordDate\": \"2024-01-05\",//考核时间\r\n \"outerId\": \"e9e033e0a69056de29363afe616007e2\",\r\n \"realName\": \"陈惠忠\",//班主任姓名\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"9ac4d501d60b1f1def3c5ddbd56f55e7\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-05 11:48:29\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"中午2001班4125舍李骏阳,周園靖带饭丛窗户翻进宿舍\",\r\n \"classMasterCode\": \"00644\",\r\n \"virtualClassNo\": \"2001\",\r\n \"classCode\": \"1215092001\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 5.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-05\",\r\n \"outerId\": \"ef52b6f8991771594593fdd4c77c7c27\",\r\n \"realName\": \"许佳妮\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"3fd74ac3a94a0cc7dabf3c7c8ce5b7cf\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-05 07:55:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1112舍晚巡视吵闹\",\r\n \"classMasterCode\": \"00720\",\r\n \"virtualClassNo\": \"2313\",\r\n \"classCode\": \"1112062313\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-05\",\r\n \"outerId\": \"e30ff9a20bb6e195a48b49a1a3582d35\",\r\n \"realName\": \"孙萍\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"64dd8fa171b4997d64ea871dd51e1da8\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-04 07:48:49\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1628舍提醒三次后还吵闹。\",\r\n \"classMasterCode\": \"00614\",\r\n \"virtualClassNo\": \"2238\",\r\n \"classCode\": \"1412052238\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-04\",\r\n \"outerId\": \"9c2c4324d1675fbe1eb3e48ce332438a\",\r\n \"realName\": \"孙剑锋\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"baaf1880604dcbd5bd96ad2b6e5740c5\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-03 17:54:17\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"傍晚巡视发现4623舍有同学放鞭炮\",\r\n \"classMasterCode\": \"00726\",\r\n \"virtualClassNo\": \"2251\",\r\n \"classCode\": \"1517042251\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 5.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-03\",\r\n \"outerId\": \"0612cd2ba21299ad92ac8e805820e6ce\",\r\n \"realName\": \"曹鲁政\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"c125f91d2b6fdfbf07633b8ba641bf7c\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2024-01-03 07:51:49\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1619宿舍提醒三次不熄灯而且吵闹\",\r\n \"classMasterCode\": \"00629\",\r\n \"virtualClassNo\": \"2240\",\r\n \"classCode\": \"1417012240\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2024-01-03\",\r\n \"outerId\": \"2c26820e2c7f9e8cf6671e19ef1aa989\",\r\n \"realName\": \"王林涛\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"91f2016f200ba9f61fd8051af70f42bd\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-28 07:51:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1630宿舍十一点后吵闹\",\r\n \"classMasterCode\": \"00614\",\r\n \"virtualClassNo\": \"2238\",\r\n \"classCode\": \"1412052238\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-28\",\r\n \"outerId\": \"49409176782b59421ef95fb499bc0f5f\",\r\n \"realName\": \"孙剑锋\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"912d02caf66a6782f47b5792deb8f72a\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-28 07:50:22\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1628宿舍十一点后吵闹\",\r\n \"classMasterCode\": \"00614\",\r\n \"virtualClassNo\": \"2238\",\r\n \"classCode\": \"1412052238\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-28\",\r\n \"outerId\": \"ec7b8d98ebcd829eb9caec986d7c1f0b\",\r\n \"realName\": \"孙剑锋\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"1e41f7f648e170dc7f38746c6a239121\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-27 08:10:46\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"3117晚上吵闹,在宿舍开店卖零食\",\r\n \"classMasterCode\": \"00175\",\r\n \"virtualClassNo\": \"2309\",\r\n \"classCode\": \"1217032309\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 5.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-27\",\r\n \"outerId\": \"7d1350124a89f288436d10c95e4561f7\",\r\n \"realName\": \"郭成东\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n },\r\n {\r\n \"id\": \"77a0cfa81a0cbaf6a7b5e99ef7ae2c03\",\r\n \"createBy\": \"12103\",\r\n \"createTime\": \"2023-12-27 07:51:08\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"1622宿舍提醒三次后仍吵闹\",\r\n \"classMasterCode\": \"00410\",\r\n \"virtualClassNo\": \"2239\",\r\n \"classCode\": \"1412062239\",\r\n \"assessmentCategory\": \"3\",\r\n \"assessmentPoint\": \"10\",\r\n \"score\": 1.00,\r\n \"type\": \"2\",\r\n \"recordDate\": \"2023-12-27\",\r\n \"outerId\": \"00e600799b549f47e5a85385c03a7ca7\",\r\n \"realName\": \"徐吉婷\",\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"deptCode\": null,\r\n \"commonDeptCode\": null,\r\n \"deptName\": null,\r\n \"commonDeptName\": null,\r\n \"classNum\": 0,\r\n \"classMasterNum\": 0,\r\n \"aveScore\": null,\r\n \"pointScore\": null,\r\n \"classScore\": null,\r\n \"classMasterScore\": null\r\n }\r\n ],\r\n \"total\": 4178,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 418\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterresume/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": "teacherNo", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterresume/fetchDetailList": { "get": { "summary": "班主任履历详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "query", "description": "老师员工号必填", "required": false, "example": "00562", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "schema": { "type": "string" } }, { "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterresume": { "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 \"teacherNo\": \"00562\", //班主任员工号\r\n \"classCode\": \"1615062530\", //班级代码\r\n \"beginTime\": \"2025-12-31 18:01:43\", //开始时间\r\n \"endTime\": \"2026-12-31 18:01:43\", //结束时间\r\n \"resumeRemark\": \"2025年12月31日 开始 担任25机电一体化技术[四](高)(星宇) 班主任\"//履历备注\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterresume/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\":\"8ed2be740d082f036787edfbb2627471\",\r\n \"teacherNo\": \"00562\", //班主任员工号\r\n \"classCode\": \"1123022608\", //班级代码\r\n \"beginTime\": \"2025-12-31 18:01:43\", //开始时间\r\n \"endTime\": \"2026-12-31 18:01:43\", //结束时间\r\n \"resumeRemark\": \"2025年12月31日 开始 担任25机电一体化技术[四](高)(星宇) 班主任111\"//履历备注\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterresume/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\"]//id集合" } } }, "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classassessmentsettle/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": "1223012254", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "2025-2026学年", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "deptCode", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"dc0e5fd30a69b1768bec5ceffbf72fa4\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1223012254\",//班级代码\n \"virtualClassNo\": \"2254\",//班号\n \"schoolYear\": \"2022-2023\",//学年\n \"schoolTerm\": \"1\"//学期\n },\n {\n \"id\": \"68b00597589a7b4734d7a55a1a7f9e34\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1523042253\",\n \"virtualClassNo\": \"2253\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"5d289bb2c98d011f70bd2c8061839394\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1517032252\",\n \"virtualClassNo\": \"2252\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"a0dec53a89c648b97cfd1f37b26ec498\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1517042251\",\n \"virtualClassNo\": \"2251\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"42ee4348dc17a39be50733a87e41e349\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1517012250\",\n \"virtualClassNo\": \"2250\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"817d7c27601111de29830259f5c3c715\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512072249\",\n \"virtualClassNo\": \"2249\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"8d416910eea8f880f51f73bf6a2aa893\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512062248\",\n \"virtualClassNo\": \"2248\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"3849f5c0d37f3e5f9143c5bcb300eadf\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512032247\",\n \"virtualClassNo\": \"2247\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"ec939c9d613236553f50aae330f0e924\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512082246\",\n \"virtualClassNo\": \"2246\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n },\n {\n \"id\": \"2f6ec476a77f81d51cef05c23d22c054\",\n \"createBy\": \"admin\",\n \"createTime\": \"2022-10-17 16:31:26\",\n \"updateBy\": \"2022-09-17 16:31:26\",\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1432072244\",\n \"virtualClassNo\": \"2244\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\"\n }\n ],\n \"total\": 1009,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 101\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classassessmentsettle/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classassessmentsettle": { "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 \"classCode\": \"1223012254\", //班级代码\r\n \"virtualClassNo\": \"2254\", //班号\r\n \"deptCode\": \"13\", //学院代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\" //学期\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classassessmentsettle/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\":\"dc0e5fd30a69b1768bec5ceffbf72fa4\",\r\n \"classCode\": \"1223012254\", //班级代码\r\n \"virtualClassNo\": \"2254\", //班号\r\n \"deptCode\": \"13\", //学院代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\" //学期\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classassessmentsettle/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": "[\"dc0e5fd30a69b1768bec5ceffbf72fa4\"]//id集合" } } }, "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/entrancerule/openHoliday": { "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\t\"id\":\"a99d9ddbfd03e7f67953d309edb97c9a\",\r\n\t\"isHoliday\": \"0\"//假期模式开启\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/entrancerule/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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/entrancerule/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "a99d9ddbfd03e7f67953d309edb97c9a", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/entrancerule": { "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\t\"ruleName\": \"二期实习(在校班)\",//规则名称\r\n\t\"isHoliday\": \"0\",//假期模式默认给0\r\n\t//大门特殊规则\r\n\t\"positionDisableRule\": {\r\n\t\t\"weekList\": [\"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"1\"], //从1到7周日为1周一为7,以此类推\r\n\t\t\"positionList\": [\"8\", \"29\"]//位置id 禁用的位置,即配置了规则后,此位置不允许进出\r\n\t\t},\r\n\t//走读生大门时段(进)\r\n\t\"dayRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",//周几\r\n\t\t\t\"weekNo\": \"2\",//从1到7周日为1周一为7,以此类推\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",//开始时间\r\n\t\t\t\t\t\"endTime\": \"20:00\"//结束时间\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//走读生大门时段(出)\r\n\t\"outDayRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"14:59\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生大门时段(进)\r\n\t\"dormRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生大门时段(出)\r\n\t\"outDormRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"14:59\",\r\n\t\t\t\t\t\"endTime\": \"20:30\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"05:00\",\r\n\t\t\t\t\t\"endTime\": \"20:30\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"05:00\",\r\n\t\t\t\t\t\"endTime\": \"18:30\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生宿舍时段(进)\r\n\t\"roomInRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生宿舍时段(出)\r\n\t\"roomOutRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t]\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/entrancerule/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\t\"id\":\"a99d9ddbfd03e7f67953d309edb97c9a\",\r\n \"ruleName\": \"二期实习(在校班)\",//规则名称\r\n\t\"isHoliday\": \"0\",//假期模式默认给0\r\n\t//大门特殊规则\r\n\t\"positionDisableRule\": {\r\n\t\t\"weekList\": [\"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"1\"], //从1到7周日为1周一为7,以此类推\r\n\t\t\"positionList\": [\"8\", \"29\"]//位置id 禁用的位置,即配置了规则后,此位置不允许进出\r\n\t\t},\r\n\t//走读生大门时段(进)\r\n\t\"dayRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",//周几\r\n\t\t\t\"weekNo\": \"2\",//从1到7周日为1周一为7,以此类推\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",//开始时间\r\n\t\t\t\t\t\"endTime\": \"20:00\"//结束时间\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"04:00\",\r\n\t\t\t\t\t\"endTime\": \"21:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//走读生大门时段(出)\r\n\t\"outDayRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"16:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"14:59\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"05:00\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dayRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生大门时段(进)\r\n\t\"dormRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生大门时段(出)\r\n\t\"outDormRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"14:59\",\r\n\t\t\t\t\t\"endTime\": \"20:30\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"05:00\",\r\n\t\t\t\t\t\"endTime\": \"20:30\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"05:00\",\r\n\t\t\t\t\t\"endTime\": \"18:30\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生宿舍时段(进)\r\n\t\"roomInRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t],\r\n\t//住宿生宿舍时段(出)\r\n\t\"roomOutRuleList\": [\r\n\t\t{\r\n\t\t\t\"week\": \"周一\",\r\n\t\t\t\"weekNo\": \"2\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周二\",\r\n\t\t\t\"weekNo\": \"3\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周三\",\r\n\t\t\t\"weekNo\": \"4\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周四\",\r\n\t\t\t\"weekNo\": \"5\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周五\",\r\n\t\t\t\"weekNo\": \"6\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周六\",\r\n\t\t\t\"weekNo\": \"7\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t},\r\n\t\t{\r\n\t\t\t\"week\": \"周日\",\r\n\t\t\t\"weekNo\": \"1\",\r\n\t\t\t\"dormRuleList\": [\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"00:00\",\r\n\t\t\t\t\t\"endTime\": \"23:59\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t},\r\n\t\t\t\t{\r\n\t\t\t\t\t\"startTime\": \"\",\r\n\t\t\t\t\t\"endTime\": \"\"\r\n\t\t\t\t}\r\n\t\t\t]\r\n\t\t}\r\n\t]\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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/entrancerule/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\"]//id集合" } } }, "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"teacherNo\": \"00562\",//员工号\n \"telPhone\": \"********\",//电话\n \"teacherNoVal\": \"莫玉华\"//姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudentinfo/queryXJDataByPage": { "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": "phone", "in": "query", "description": "电话", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "stuStatus", "in": "query", "description": "默认传1", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "stuNo", "in": "query", "description": "学号", "required": false, "example": "3", "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "example": "陈", "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "example": "3", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classmasterevaluationappeal/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": "classNo", "in": "query", "description": "", "required": false, "example": "2247", "schema": { "type": "string" } }, { "name": "appealStatus", "in": "query", "description": "", "required": false, "example": "0", "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/classmasterevaluationappeal/editAppealStatus": { "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\": \"2f6e0ba052996d7e397e315b66be0a5c\",\r\n \"appealStatus\": \"1\", //审核状态1通过2驳回\r\n \"appealReply\": \"反馈意见\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/appeal_status": { "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": {} } } } } }, "security": [] } }, "/api/stuwork/classmasterevaluationappeal/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/classroomhygienedailyanalysis/queryClassRoomHygieneDailyAnalysis": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "buildingNo", "in": "query", "description": "", "required": false, "example": "2", "schema": { "type": "string" } }, { "name": "month", "in": "query", "description": "", "required": false, "example": "2022-07", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhygienedailyanalysis/queryClassHygieneDailyAnalysis": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "buildingNo", "in": "query", "description": "", "required": false, "example": [ "7" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "month", "in": "query", "description": "", "required": false, "example": [ "2022-03" ], "schema": { "type": "array", "items": { "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicstudent/avatar/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": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"classes\": [\r\n {\r\n \"id\": null,\r\n \"createBy\": null,\r\n \"createTime\": null,\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"remarks\": null,\r\n \"delFlag\": null,\r\n \"classCode\": \"1123022508\",//班级代码\r\n \"className\": null,\r\n \"classNo\": \"2508\",//班号\r\n \"classProName\": null,\r\n \"majorCode\": null,\r\n \"enterDate\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"grade\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classQq\": null,\r\n \"preStuNum\": null,\r\n \"isGraduate\": null,\r\n \"isPractice\": null,\r\n \"isUpdataPractice\": null,\r\n \"gateRule\": null,\r\n \"classStatus\": null,\r\n \"isUnion\": null,\r\n \"isLb\": null,\r\n \"isHigh\": null,\r\n \"stuLoseRate\": null,\r\n \"stuNumOrigin\": null,\r\n \"enterYear\": null,\r\n \"majorName\": null\r\n }\r\n ],\r\n \"students\": [//学生信息\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"122301251732\",//学号\r\n \"realName\": \"许雯曦\",//姓名\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",//班级代码\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,//新生头像审核\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250807\",\r\n \"realName\": \"朱韵童\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250801\",\r\n \"realName\": \"金菲\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250850\",\r\n \"realName\": \"和钰婕\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250819\",\r\n \"realName\": \"李金原\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250831\",\r\n \"realName\": \"王晨旭\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250851\",\r\n \"realName\": \"王舒晨\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250802\",\r\n \"realName\": \"金姗\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250821\",\r\n \"realName\": \"李昱辰\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250806\",\r\n \"realName\": \"赵奕欣\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250804\",\r\n \"realName\": \"姚一凡\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250823\",\r\n \"realName\": \"刘佳豪\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250840\",\r\n \"realName\": \"张超\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250832\",\r\n \"realName\": \"王瑞凡\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250820\",\r\n \"realName\": \"李阳\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250843\",\r\n \"realName\": \"张书瑜\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250825\",\r\n \"realName\": \"吕仁晨\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250815\",\r\n \"realName\": \"黄儒品\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250808\",\r\n \"realName\": \"蔡嘉文\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250814\",\r\n \"realName\": \"何昆硕\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250805\",\r\n \"realName\": \"赵雅萍\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112301250731\",\r\n \"realName\": \"张昊麟\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250822\",\r\n \"realName\": \"李震威\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250826\",\r\n \"realName\": \"秦天赐\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250846\",\r\n \"realName\": \"张梓军\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250845\",\r\n \"realName\": \"张鑫瑞\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250809\",\r\n \"realName\": \"陈威宇\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250811\",\r\n \"realName\": \"丁子洋\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250837\",\r\n \"realName\": \"杨礼超\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250849\",\r\n \"realName\": \"孟子怡\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250848\",\r\n \"realName\": \"苏朦\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250816\",\r\n \"realName\": \"姜尚勤\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250827\",\r\n \"realName\": \"饶坤明\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250844\",\r\n \"realName\": \"张天乐\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250813\",\r\n \"realName\": \"何俊泽\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250835\",\r\n \"realName\": \"魏世杰\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250842\",\r\n \"realName\": \"张鹏\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250853\",\r\n \"realName\": \"扎西班久\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250818\",\r\n \"realName\": \"李国富\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250828\",\r\n \"realName\": \"石智海\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250824\",\r\n \"realName\": \"娄浩\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250810\",\r\n \"realName\": \"丁浩\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250830\",\r\n \"realName\": \"汪子豪\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250834\",\r\n \"realName\": \"韦瑞\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250836\",\r\n \"realName\": \"吴志飞\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250852\",\r\n \"realName\": \"尚旭阳\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250847\",\r\n \"realName\": \"朱嘉宝\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250833\",\r\n \"realName\": \"王涛\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n },\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 \"remarks\": null,\r\n \"tenantId\": null,\r\n \"stuNo\": \"112302250841\",\r\n \"realName\": \"张界鸣\",\r\n \"gender\": null,\r\n \"stuStatus\": null,\r\n \"classCode\": \"1123022508\",\r\n \"enrollStatus\": null,\r\n \"qrCode\": null,\r\n \"isGradu\": null,\r\n \"isClassLeader\": null,\r\n \"graduTime\": null,\r\n \"isInout\": null,\r\n \"classMasterName\": null,\r\n \"classMasterCode\": null,\r\n \"specialIn\": null,\r\n \"socialInsurance\": null,\r\n \"enrollNo\": null,\r\n \"enrollMiddleNo\": null,\r\n \"graduNo\": null,\r\n \"faceExclude\": null,\r\n \"faceExcludeReason\": null,\r\n \"avatarAudit\": null,\r\n \"idCard\": null,\r\n \"phone\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"education\": null,\r\n \"majorName\": null,\r\n \"majorCode\": null,\r\n \"householdAddress\": null,\r\n \"roomNo\": null,\r\n \"classQQ\": null,\r\n \"graduateNumber\": null,\r\n \"oldName\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null\r\n }\r\n ]\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/basic/basicyear/queryAllSchoolYear": { "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": { "text/html": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicyear/getNowSchoolYear": { "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": { "text/html": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass/listByRole": { "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": { "text/html": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicdept/getDeptList": { "get": { "summary": "二级学院列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "secondFlag", "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": { "text/html": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicclass/getGradeList": { "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": { "text/html": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/professional/teacherbase/TeacherBaseList": { "get": { "summary": "老师列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "commonDeptCode", "in": "query", "description": "二级学院代码", "required": false, "example": "11", "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": { "text/html": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormbuilding/newPage": { "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"076b30c88327c9e09894c609f0b11762\",//id\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-15 09:44:47\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:00:59\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"1\",//楼号\n \"layers\": 6,//层数\n \"phone\": \"81162201\",//电话号码\n \"nowNum\": 877,//现住人数\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 317,//剩余可住人数\n \"roomEmptyNum5\": 2,//空5人宿舍数\n \"roomEmptyNum4\": 3,//空4人宿舍数\n \"roomEmptyNum3\": 9,//空3人宿舍数\n \"roomEmptyNum2\": 22,//空2人宿舍数\n \"roomEmptyNum1\": 50,//空1人宿舍数\n \"allAlreadyNum\": 877,//已住人数\n \"occupancyRate\": null,\n \"roomEmptyNum\": 29,//空宿舍数\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"061d0e8f5a1971bcd05b18258236092a\",\n \"createBy\": \"admin\",\n \"createTime\": \"2026-01-08 13:17:27\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"10086\",\n \"layers\": 1,\n \"phone\": \"123\",\n \"nowNum\": 0,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 0,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 0,\n \"roomEmptyNum3\": 0,\n \"roomEmptyNum2\": 0,\n \"roomEmptyNum1\": 0,\n \"allAlreadyNum\": 0,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 0,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"80ada9540e7a54855838f5e9b9fb88d1\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 10:19:05\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:01:22\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"2\",\n \"layers\": 6,\n \"phone\": \"81162201\",\n \"nowNum\": 810,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 366,\n \"roomEmptyNum5\": 3,\n \"roomEmptyNum4\": 13,\n \"roomEmptyNum3\": 21,\n \"roomEmptyNum2\": 28,\n \"roomEmptyNum1\": 54,\n \"allAlreadyNum\": 810,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 21,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"bb62ec24cf504d912d5680780c7db222\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 10:19:20\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:01:38\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"3\",\n \"layers\": 6,\n \"phone\": \"81162203\",\n \"nowNum\": 973,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 215,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 3,\n \"roomEmptyNum3\": 10,\n \"roomEmptyNum2\": 29,\n \"roomEmptyNum1\": 55,\n \"allAlreadyNum\": 973,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 10,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"d29610b7a6b60f51558c65fa29b429ab\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 14:29:10\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:07\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"4\",\n \"layers\": 6,\n \"phone\": \"81162203\",\n \"nowNum\": 856,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 324,\n \"roomEmptyNum5\": 4,\n \"roomEmptyNum4\": 2,\n \"roomEmptyNum3\": 15,\n \"roomEmptyNum2\": 27,\n \"roomEmptyNum1\": 46,\n \"allAlreadyNum\": 856,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 24,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"8e09893f7c5542e25aaa0e455fcac625\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 14:35:00\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:19\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"5\",\n \"layers\": 6,\n \"phone\": \"81162206\",\n \"nowNum\": 973,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 225,\n \"roomEmptyNum5\": 1,\n \"roomEmptyNum4\": 2,\n \"roomEmptyNum3\": 12,\n \"roomEmptyNum2\": 26,\n \"roomEmptyNum1\": 54,\n \"allAlreadyNum\": 973,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 11,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"0a82852a8166d44156cd3737012ffc23\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-15 10:54:15\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:34\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"6\",\n \"layers\": 6,\n \"phone\": \"81162208\",\n \"nowNum\": 628,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 338,\n \"roomEmptyNum5\": 1,\n \"roomEmptyNum4\": 4,\n \"roomEmptyNum3\": 9,\n \"roomEmptyNum2\": 21,\n \"roomEmptyNum1\": 32,\n \"allAlreadyNum\": 628,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 36,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"ce9d2dae424722b42a12cb9083f60972\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-09-24 21:17:29\",\n \"updateBy\": \"00353\",\n \"updateTime\": \"2024-05-16 09:41:14\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"7\",\n \"layers\": 6,\n \"phone\": \"81162208\",\n \"nowNum\": 1,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 439,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 0,\n \"roomEmptyNum3\": 1,\n \"roomEmptyNum2\": 0,\n \"roomEmptyNum1\": 0,\n \"allAlreadyNum\": 1,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 109,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n }\n ],\n \"total\": 8,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormbuilding": { "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\": \"10086\",//楼号\r\n \"layers\": 1,//层数\r\n \"phone\": \"123\"//电话\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/dormroomstudent/queryEmptyRoomWithBuildingNo": { "get": { "summary": "空宿舍列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "buildingNo", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"076b30c88327c9e09894c609f0b11762\",//id\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-15 09:44:47\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:00:59\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"1\",//楼号\n \"layers\": 6,//层数\n \"phone\": \"81162201\",//电话号码\n \"nowNum\": 877,//现住人数\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 317,//剩余可住人数\n \"roomEmptyNum5\": 2,//空5人宿舍数\n \"roomEmptyNum4\": 3,//空4人宿舍数\n \"roomEmptyNum3\": 9,//空3人宿舍数\n \"roomEmptyNum2\": 22,//空2人宿舍数\n \"roomEmptyNum1\": 50,//空1人宿舍数\n \"allAlreadyNum\": 877,//已住人数\n \"occupancyRate\": null,\n \"roomEmptyNum\": 29,//空宿舍数\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"061d0e8f5a1971bcd05b18258236092a\",\n \"createBy\": \"admin\",\n \"createTime\": \"2026-01-08 13:17:27\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"10086\",\n \"layers\": 1,\n \"phone\": \"123\",\n \"nowNum\": 0,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 0,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 0,\n \"roomEmptyNum3\": 0,\n \"roomEmptyNum2\": 0,\n \"roomEmptyNum1\": 0,\n \"allAlreadyNum\": 0,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 0,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"80ada9540e7a54855838f5e9b9fb88d1\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 10:19:05\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:01:22\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"2\",\n \"layers\": 6,\n \"phone\": \"81162201\",\n \"nowNum\": 810,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 366,\n \"roomEmptyNum5\": 3,\n \"roomEmptyNum4\": 13,\n \"roomEmptyNum3\": 21,\n \"roomEmptyNum2\": 28,\n \"roomEmptyNum1\": 54,\n \"allAlreadyNum\": 810,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 21,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"bb62ec24cf504d912d5680780c7db222\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 10:19:20\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:01:38\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"3\",\n \"layers\": 6,\n \"phone\": \"81162203\",\n \"nowNum\": 973,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 215,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 3,\n \"roomEmptyNum3\": 10,\n \"roomEmptyNum2\": 29,\n \"roomEmptyNum1\": 55,\n \"allAlreadyNum\": 973,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 10,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"d29610b7a6b60f51558c65fa29b429ab\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 14:29:10\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:07\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"4\",\n \"layers\": 6,\n \"phone\": \"81162203\",\n \"nowNum\": 856,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 324,\n \"roomEmptyNum5\": 4,\n \"roomEmptyNum4\": 2,\n \"roomEmptyNum3\": 15,\n \"roomEmptyNum2\": 27,\n \"roomEmptyNum1\": 46,\n \"allAlreadyNum\": 856,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 24,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"8e09893f7c5542e25aaa0e455fcac625\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 14:35:00\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:19\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"5\",\n \"layers\": 6,\n \"phone\": \"81162206\",\n \"nowNum\": 973,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 225,\n \"roomEmptyNum5\": 1,\n \"roomEmptyNum4\": 2,\n \"roomEmptyNum3\": 12,\n \"roomEmptyNum2\": 26,\n \"roomEmptyNum1\": 54,\n \"allAlreadyNum\": 973,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 11,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"0a82852a8166d44156cd3737012ffc23\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-15 10:54:15\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:34\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"6\",\n \"layers\": 6,\n \"phone\": \"81162208\",\n \"nowNum\": 628,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 338,\n \"roomEmptyNum5\": 1,\n \"roomEmptyNum4\": 4,\n \"roomEmptyNum3\": 9,\n \"roomEmptyNum2\": 21,\n \"roomEmptyNum1\": 32,\n \"allAlreadyNum\": 628,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 36,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"ce9d2dae424722b42a12cb9083f60972\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-09-24 21:17:29\",\n \"updateBy\": \"00353\",\n \"updateTime\": \"2024-05-16 09:41:14\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"7\",\n \"layers\": 6,\n \"phone\": \"81162208\",\n \"nowNum\": 1,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 439,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 0,\n \"roomEmptyNum3\": 1,\n \"roomEmptyNum2\": 0,\n \"roomEmptyNum1\": 0,\n \"allAlreadyNum\": 1,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 109,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n }\n ],\n \"total\": 8,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudent/queryEmtryRoomDetail": { "get": { "summary": "空几人宿舍列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "buildingNo", "in": "query", "description": "楼栋号", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "roomType", "in": "query", "description": "空几人", "required": false, "example": "5", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"076b30c88327c9e09894c609f0b11762\",//id\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-15 09:44:47\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:00:59\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"1\",//楼号\n \"layers\": 6,//层数\n \"phone\": \"81162201\",//电话号码\n \"nowNum\": 877,//现住人数\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 317,//剩余可住人数\n \"roomEmptyNum5\": 2,//空5人宿舍数\n \"roomEmptyNum4\": 3,//空4人宿舍数\n \"roomEmptyNum3\": 9,//空3人宿舍数\n \"roomEmptyNum2\": 22,//空2人宿舍数\n \"roomEmptyNum1\": 50,//空1人宿舍数\n \"allAlreadyNum\": 877,//已住人数\n \"occupancyRate\": null,\n \"roomEmptyNum\": 29,//空宿舍数\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"061d0e8f5a1971bcd05b18258236092a\",\n \"createBy\": \"admin\",\n \"createTime\": \"2026-01-08 13:17:27\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"10086\",\n \"layers\": 1,\n \"phone\": \"123\",\n \"nowNum\": 0,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 0,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 0,\n \"roomEmptyNum3\": 0,\n \"roomEmptyNum2\": 0,\n \"roomEmptyNum1\": 0,\n \"allAlreadyNum\": 0,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 0,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"80ada9540e7a54855838f5e9b9fb88d1\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 10:19:05\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:01:22\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"2\",\n \"layers\": 6,\n \"phone\": \"81162201\",\n \"nowNum\": 810,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 366,\n \"roomEmptyNum5\": 3,\n \"roomEmptyNum4\": 13,\n \"roomEmptyNum3\": 21,\n \"roomEmptyNum2\": 28,\n \"roomEmptyNum1\": 54,\n \"allAlreadyNum\": 810,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 21,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"bb62ec24cf504d912d5680780c7db222\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 10:19:20\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:01:38\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"3\",\n \"layers\": 6,\n \"phone\": \"81162203\",\n \"nowNum\": 973,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 215,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 3,\n \"roomEmptyNum3\": 10,\n \"roomEmptyNum2\": 29,\n \"roomEmptyNum1\": 55,\n \"allAlreadyNum\": 973,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 10,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"d29610b7a6b60f51558c65fa29b429ab\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 14:29:10\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:07\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"4\",\n \"layers\": 6,\n \"phone\": \"81162203\",\n \"nowNum\": 856,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 324,\n \"roomEmptyNum5\": 4,\n \"roomEmptyNum4\": 2,\n \"roomEmptyNum3\": 15,\n \"roomEmptyNum2\": 27,\n \"roomEmptyNum1\": 46,\n \"allAlreadyNum\": 856,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 24,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"8e09893f7c5542e25aaa0e455fcac625\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-14 14:35:00\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:19\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"\",\n \"buildingNo\": \"5\",\n \"layers\": 6,\n \"phone\": \"81162206\",\n \"nowNum\": 973,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 225,\n \"roomEmptyNum5\": 1,\n \"roomEmptyNum4\": 2,\n \"roomEmptyNum3\": 12,\n \"roomEmptyNum2\": 26,\n \"roomEmptyNum1\": 54,\n \"allAlreadyNum\": 973,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 11,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"0a82852a8166d44156cd3737012ffc23\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-07-15 10:54:15\",\n \"updateBy\": \"00063\",\n \"updateTime\": \"2024-04-07 14:02:34\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"6\",\n \"layers\": 6,\n \"phone\": \"81162208\",\n \"nowNum\": 628,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 338,\n \"roomEmptyNum5\": 1,\n \"roomEmptyNum4\": 4,\n \"roomEmptyNum3\": 9,\n \"roomEmptyNum2\": 21,\n \"roomEmptyNum1\": 32,\n \"allAlreadyNum\": 628,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 36,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n },\n {\n \"id\": \"ce9d2dae424722b42a12cb9083f60972\",\n \"createBy\": \"admin\",\n \"createTime\": \"2020-09-24 21:17:29\",\n \"updateBy\": \"00353\",\n \"updateTime\": \"2024-05-16 09:41:14\",\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"buildingNo\": \"7\",\n \"layers\": 6,\n \"phone\": \"81162208\",\n \"nowNum\": 1,\n \"roomNum\": null,\n \"allNum\": null,\n \"surplusNum\": 439,\n \"roomEmptyNum5\": 0,\n \"roomEmptyNum4\": 0,\n \"roomEmptyNum3\": 1,\n \"roomEmptyNum2\": 0,\n \"roomEmptyNum1\": 0,\n \"allAlreadyNum\": 1,\n \"occupancyRate\": null,\n \"roomEmptyNum\": 109,\n \"sixRoomNum\": null,\n \"sixNum\": null,\n \"sixAlreadyNum\": null,\n \"fourRoomNum\": null,\n \"fourNum\": null,\n \"fourAlreadyNum\": null,\n \"roomNotEmptyNum\": null,\n \"dormBuildingMangerList\": null,\n \"roomNo\": null\n }\n ],\n \"total\": 8,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormbuilding/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\":\"061d0e8f5a1971bcd05b18258236092a\",\r\n \"buildingNo\": \"10085\",//楼号\r\n \"layers\": 1,//层数\r\n \"phone\": \"123\"//电话\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/dormbuilding/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": [ "061d0e8f5a1971bcd05b18258236092a" ] } } }, "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/dormbuilding/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "061d0e8f5a1971bcd05b18258236092a", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "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" ] }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"id\": \"061d0e8f5a1971bcd05b18258236092a\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-08 13:17:27\",\r\n \"updateBy\": \"admin\",\r\n \"updateTime\": \"2026-01-08 14:57:14\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"10086\",//楼号\r\n \"layers\": 1,//楼层\r\n \"phone\": \"33333\"//电话\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormbuilding/list": { "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": { "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/admin/dict/type/room_stu_num": { "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": { "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": { "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, "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/editDept": { "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\": \"13\",//二级学院编码\r\n \"ids\": [\"7\"]\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/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": { "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/fetchDormRoomTreeList": { "get": { "summary": "宿舍树状列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "dormdataType", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/dormitory_occupancy_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/stuwork/dormroomstudent/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": "3", "schema": { "type": "string" } }, { "name": "gender", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "roomNo", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classNo", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "stuNo", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "realName", "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": { "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" ] } } } } }, "security": [] } }, "/api/basic/basicclass/getListByRole": { "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": { "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/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": { "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/dormroomstudent": { "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": { "roomNo": "1000000001", "bedNo": "1", "stuNo": "151203254615", "isLeader": "0" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudent/fearchRoomStuNum": { "get": { "summary": "床位号", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "roomNo", "in": "query", "description": "宿舍号", "required": false, "example": "1000000001", "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": { "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/dormroomstudent/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": "8819d710dfcff2c8a6e0d050f5d1a915", "roomNo": "1000000001", "bedNo": "2", "stuNo": "151203254615", "isLeader": "0" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudent/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/dormhygienedaily/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": "buildingNo", "in": "query", "description": "楼栋号 6", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年如2024-2025", "required": false, "example": "", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"82e37c27ea89fcf1b23b2ab8207494e0\",\n \"createBy\": \"12103\",\n \"createTime\": \"2024-10-14 11:12:56\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2024-2025\",//学年\n \"schoolTerm\": \"1\",//学期\n \"buildingNo\": \"6\",//楼栋号\n \"roomNo\": \"6602\",//宿舍号\n \"recordDate\": \"2024-10-14 00:00:00\",\n \"note\": \"未打扫\"//情况记录\n },\n {\n \"id\": \"d97a1d46d069afa997bbfee8bf2d7b8e\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:35:37\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5626\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"1#被未曡,6#垃圾未丢,4#5#凳,窗帘,镜,阳地边角。\"\n },\n {\n \"id\": \"ce8e37bafbe8c431d3ebe1f2e102838f\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:34:23\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5621\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"6#被未曡,2#4#柜门开,阳地,便池,舍地边角。\"\n },\n {\n \"id\": \"8b3289fb47b262ffeb9b43c85a5a2666\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:32:52\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5519\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"舍地,阳地,便池,3#桌面乱,镜 ,阳,厠灯未关。\"\n },\n {\n \"id\": \"444d7b4f4691f078e5d565afc916048d\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:31:22\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5515\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"大门未锁,1#凳,4#53被未曡,4#垃圾未丢镜 ,阳地。\"\n },\n {\n \"id\": \"14f5605438537862913f22b028a98a74\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:29:39\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5509\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"大门未锁,窗帘,3#凳,阳地,便池,镜。\"\n },\n {\n \"id\": \"07ada1498eaec631bb07f6a17b96a2a0\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-11-01 10:13:34\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"3\",\n \"roomNo\": \"3127\",\n \"recordDate\": \"2021-11-01 00:00:00\",\n \"note\": \"未锁门,未打扫\"\n },\n {\n \"id\": \"adf279dd54c4ef5b997c6a20c86fa568\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:00\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5637\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n },\n {\n \"id\": \"548791eb2dd8346142e0cd730fc85c94\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:52\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5627\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n },\n {\n \"id\": \"0b5b8869c317ab569a77be0dea2a5ce8\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:27\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5616\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n }\n ],\n \"total\": 40,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 4\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormhygienedaily": { "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\": \"1\",//楼栋号\r\n \"roomNo\": \"1103\",//宿舍号\r\n \"recordDate\": \"2026-01-09 13:21:51\",//记录时间\r\n \"note\": \"测试\"//情况记录\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/dormhygienedaily/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\":\"b723e179c074372c8b4033e81114b2b6\",\r\n \"buildingNo\": \"1\",//楼栋号\r\n \"roomNo\": \"1103\",//宿舍号\r\n \"recordDate\": \"2026-01-09 13:21:51\",//记录时间\r\n \"note\": \"测试\"//情况记录\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/dormhygienedaily/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": { "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/dormhygienedaily/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "b723e179c074372c8b4033e81114b2b6", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "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" ] }, "example": { "code": 0, "msg": null, "data": { "id": "b723e179c074372c8b4033e81114b2b6", "createBy": "admin", "createTime": "2026-01-09 13:23:11", "updateBy": "admin", "updateTime": "2026-01-09 13:24:42", "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "buildingNo": "1", "roomNo": "1103", "recordDate": "2026-01-09 00:00:00", "note": "测试" }, "ok": true } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormhygienemonthly/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": "buildingNo", "in": "query", "description": "楼栋号 6", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "schoolYear", "in": "query", "description": "学年如2024-2025", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "roomNo", "in": "query", "description": "宿舍号1101", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "month", "in": "query", "description": "月份2026-01", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"82e37c27ea89fcf1b23b2ab8207494e0\",\n \"createBy\": \"12103\",\n \"createTime\": \"2024-10-14 11:12:56\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2024-2025\",//学年\n \"schoolTerm\": \"1\",//学期\n \"buildingNo\": \"6\",//楼栋号\n \"roomNo\": \"6602\",//宿舍号\n \"recordDate\": \"2024-10-14 00:00:00\",\n \"note\": \"未打扫\"//情况记录\n },\n {\n \"id\": \"d97a1d46d069afa997bbfee8bf2d7b8e\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:35:37\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5626\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"1#被未曡,6#垃圾未丢,4#5#凳,窗帘,镜,阳地边角。\"\n },\n {\n \"id\": \"ce8e37bafbe8c431d3ebe1f2e102838f\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:34:23\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5621\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"6#被未曡,2#4#柜门开,阳地,便池,舍地边角。\"\n },\n {\n \"id\": \"8b3289fb47b262ffeb9b43c85a5a2666\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:32:52\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5519\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"舍地,阳地,便池,3#桌面乱,镜 ,阳,厠灯未关。\"\n },\n {\n \"id\": \"444d7b4f4691f078e5d565afc916048d\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:31:22\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5515\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"大门未锁,1#凳,4#53被未曡,4#垃圾未丢镜 ,阳地。\"\n },\n {\n \"id\": \"14f5605438537862913f22b028a98a74\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:29:39\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5509\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"大门未锁,窗帘,3#凳,阳地,便池,镜。\"\n },\n {\n \"id\": \"07ada1498eaec631bb07f6a17b96a2a0\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-11-01 10:13:34\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"3\",\n \"roomNo\": \"3127\",\n \"recordDate\": \"2021-11-01 00:00:00\",\n \"note\": \"未锁门,未打扫\"\n },\n {\n \"id\": \"adf279dd54c4ef5b997c6a20c86fa568\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:00\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5637\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n },\n {\n \"id\": \"548791eb2dd8346142e0cd730fc85c94\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:52\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5627\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n },\n {\n \"id\": \"0b5b8869c317ab569a77be0dea2a5ce8\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:27\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5616\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n }\n ],\n \"total\": 40,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 4\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormhygienemonthly": { "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 \"remarks\": \"舍地,阳地边,便池\", //备注\r\n \"buildingNo\": \"1\", //楼号\r\n \"roomNo\": \"1102\", //宿舍号\r\n \"month\": \"2025-11\", //月份\r\n \"score\": 85.00 //分数\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/dormhygienemonthly/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\":\"cbf2d012af85c407c4986c00d9c3c61d\",\r\n \"remarks\": \"舍地,阳地边,便池\", //备注\r\n \"buildingNo\": \"1\", //楼号\r\n \"roomNo\": \"1102\", //宿舍号\r\n \"month\": \"2025-11\", //月份\r\n \"score\": 85.00 //分数\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/dormhygienemonthly/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": { "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/dormhygienemonthly/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "cbf2d012af85c407c4986c00d9c3c61d", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "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" ] }, "example": { "code": 0, "msg": null, "data": { "id": "b723e179c074372c8b4033e81114b2b6", "createBy": "admin", "createTime": "2026-01-09 13:23:11", "updateBy": "admin", "updateTime": "2026-01-09 13:24:42", "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "buildingNo": "1", "roomNo": "1103", "recordDate": "2026-01-09 00:00:00", "note": "测试" }, "ok": true } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/reform_status": { "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/dormreform/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": "13", "schema": { "type": "string" } }, { "name": "classNos", "in": "query", "description": "班号", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "roomNo", "in": "query", "description": "1101", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "reformStatus", "in": "query", "description": "整改结果", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "2025-2026", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "month", "in": "query", "description": "2026-02", "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": { "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" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"82e37c27ea89fcf1b23b2ab8207494e0\",\n \"createBy\": \"12103\",\n \"createTime\": \"2024-10-14 11:12:56\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2024-2025\",//学年\n \"schoolTerm\": \"1\",//学期\n \"buildingNo\": \"6\",//楼栋号\n \"roomNo\": \"6602\",//宿舍号\n \"recordDate\": \"2024-10-14 00:00:00\",\n \"note\": \"未打扫\"//情况记录\n },\n {\n \"id\": \"d97a1d46d069afa997bbfee8bf2d7b8e\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:35:37\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5626\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"1#被未曡,6#垃圾未丢,4#5#凳,窗帘,镜,阳地边角。\"\n },\n {\n \"id\": \"ce8e37bafbe8c431d3ebe1f2e102838f\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:34:23\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5621\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"6#被未曡,2#4#柜门开,阳地,便池,舍地边角。\"\n },\n {\n \"id\": \"8b3289fb47b262ffeb9b43c85a5a2666\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:32:52\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5519\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"舍地,阳地,便池,3#桌面乱,镜 ,阳,厠灯未关。\"\n },\n {\n \"id\": \"444d7b4f4691f078e5d565afc916048d\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:31:22\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5515\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"大门未锁,1#凳,4#53被未曡,4#垃圾未丢镜 ,阳地。\"\n },\n {\n \"id\": \"14f5605438537862913f22b028a98a74\",\n \"createBy\": \"12103\",\n \"createTime\": \"2023-09-14 10:29:39\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2023-2024\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5509\",\n \"recordDate\": \"2023-09-14 00:00:00\",\n \"note\": \"大门未锁,窗帘,3#凳,阳地,便池,镜。\"\n },\n {\n \"id\": \"07ada1498eaec631bb07f6a17b96a2a0\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-11-01 10:13:34\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"3\",\n \"roomNo\": \"3127\",\n \"recordDate\": \"2021-11-01 00:00:00\",\n \"note\": \"未锁门,未打扫\"\n },\n {\n \"id\": \"adf279dd54c4ef5b997c6a20c86fa568\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:00\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5637\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n },\n {\n \"id\": \"548791eb2dd8346142e0cd730fc85c94\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:52\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5627\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n },\n {\n \"id\": \"0b5b8869c317ab569a77be0dea2a5ce8\",\n \"createBy\": \"12103\",\n \"createTime\": \"2021-10-08 10:37:27\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": \"2021-2022\",\n \"schoolTerm\": \"1\",\n \"buildingNo\": \"5\",\n \"roomNo\": \"5616\",\n \"recordDate\": \"2021-10-08 00:00:00\",\n \"note\": \"未打扫\"\n }\n ],\n \"total\": 40,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 4\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormreform": { "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 \"roomNo\": \"1117\",//房间号\r\n \"reformDate\": \"2026-01-09\",//整改日期\r\n \"reformContent\": \"测试\"//整改内容\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/dormreform/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\":\"0001b8ca6ba941478ab4895ce1dd82d0\",\r\n \"reformStatus\":\"\",//整改状态 合格不合格整改填充此字段即可\r\n \"roomNo\": \"1117\",//房间号\r\n \"reformDate\": \"2026-01-09\",//整改日期\r\n \"reformContent\": \"测试\"//整改内容\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/dormreform/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": { "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/dormreform/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "cbf2d012af85c407c4986c00d9c3c61d", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "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" ] }, "example": { "code": 0, "msg": null, "data": { "id": "b723e179c074372c8b4033e81114b2b6", "createBy": "admin", "createTime": "2026-01-09 13:23:11", "updateBy": "admin", "updateTime": "2026-01-09 13:24:42", "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "buildingNo": "1", "roomNo": "1103", "recordDate": "2026-01-09 00:00:00", "note": "测试" }, "ok": true } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudent/queryStudentAbnormal": { "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": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": [\r\n {\r\n \"classNo\": \"2334\",//班级号\r\n \"realName\": \"陆静怡\",//姓名\r\n \"bedNo\": \"1\",//床位号\r\n \"roomNo\": \"2421\",//宿舍号\r\n \"stuNo\": \"131711233421\",//学号\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谈彦\",//班主任姓名\r\n \"teacherPhone\": null,//班主任电话\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",//专业\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"//学院\r\n },\r\n {\r\n \"classNo\": \"2453\",\r\n \"realName\": \"周仁杰\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4226\",\r\n \"stuNo\": \"151701245343\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"华晨磊\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2423\",\r\n \"realName\": \"李陆逸\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"6513\",\r\n \"stuNo\": \"131510242334\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"耿敬茹\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"现代物流管理(联院大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2407\",\r\n \"realName\": \"王辰昕\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"5610\",\r\n \"stuNo\": \"111710240728\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谢村善\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2416\",\r\n \"realName\": \"崔凯\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3637\",\r\n \"stuNo\": \"121708241609\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘星宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2429\",\r\n \"realName\": \"顾茗语\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2133\",\r\n \"stuNo\": \"131711242916\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张威威\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2410\",\r\n \"realName\": \"王静\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2217\",\r\n \"stuNo\": \"121203241002\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"韩渴望\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控编程[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2301\",\r\n \"realName\": \"陈浩然\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3215\",\r\n \"stuNo\": \"121204230111\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"朱琪\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2331\",\r\n \"realName\": \"徐嘉辉\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6602\",\r\n \"stuNo\": \"131202233152\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"吴伟杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"王瑞\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"6521\",\r\n \"stuNo\": \"132301243045\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2323\",\r\n \"realName\": \"樊帅\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6224\",\r\n \"stuNo\": \"111702232310\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"赵李凤\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2442\",\r\n \"realName\": \"仲馨怡\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"1414\",\r\n \"stuNo\": \"141208244243\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"卜清\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"健康与社会照护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2429\",\r\n \"realName\": \"杨梦洁\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"2235\",\r\n \"stuNo\": \"131711242935\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张威威\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2456\",\r\n \"realName\": \"薛仲盛\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4117\",\r\n \"stuNo\": \"122301245640\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"夏涛\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造技术应用[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2445\",\r\n \"realName\": \"尹楠\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"1308\",\r\n \"stuNo\": \"141703244532\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"朱鑫仙\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"中药[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2341\",\r\n \"realName\": \"肖茗皓\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4207\",\r\n \"stuNo\": \"141702234153\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"郑舸\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物分析与检验[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2322\",\r\n \"realName\": \"耿圆圆\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"1118\",\r\n \"stuNo\": \"111702232201\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"翟雳\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"谢俊辉\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"6522\",\r\n \"stuNo\": \"132301243051\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2459\",\r\n \"realName\": \"仲馨悦\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1637\",\r\n \"stuNo\": \"141702245943\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谈丽\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物分析与检验[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2343\",\r\n \"realName\": \"曹鑫悦\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"1314\",\r\n \"stuNo\": \"141701234301\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"殳叶婷\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物制剂[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2412\",\r\n \"realName\": \"张明豪\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4135\",\r\n \"stuNo\": \"141707241246\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"唐大美\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数字化设计与制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2308\",\r\n \"realName\": \"王敏威\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3115\",\r\n \"stuNo\": \"121702230832\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"高进祥\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控加工(数控铣)[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2436\",\r\n \"realName\": \"徐子轩\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"6127\",\r\n \"stuNo\": \"161205243637\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"邹婷婷\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修(氢能制备设备方向)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2453\",\r\n \"realName\": \"王柏霖\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4228\",\r\n \"stuNo\": \"151701245330\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"华晨磊\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2442\",\r\n \"realName\": \"李涵\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1414\",\r\n \"stuNo\": \"141208244212\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"卜清\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"健康与社会照护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2301\",\r\n \"realName\": \"杨思远\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3624\",\r\n \"stuNo\": \"121204230136\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"朱琪\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2402\",\r\n \"realName\": \"袁加轩\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"5329\",\r\n \"stuNo\": \"111206240237\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"王锐\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"焊接加工[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2426\",\r\n \"realName\": \"李泽成\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"6511\",\r\n \"stuNo\": \"131202242642\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"徐丹\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2413\",\r\n \"realName\": \"刘锦豪\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"3626\",\r\n \"stuNo\": \"121713241330\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"潘杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2444\",\r\n \"realName\": \"黄亦涵\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1602\",\r\n \"stuNo\": \"141701244412\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"邵璟\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物制剂[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2350\",\r\n \"realName\": \"赵振轩\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4302\",\r\n \"stuNo\": \"151206235045\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"许航\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"无人机应用技术[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2007\",\r\n \"realName\": \"朱万谦\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"3619\",\r\n \"stuNo\": \"121701200742\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"薛龙\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造技术\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"1916\",\r\n \"realName\": \"胡博涛\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"7609\",\r\n \"stuNo\": \"121703191614\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"黄科峰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控编程[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2031\",\r\n \"realName\": \"邱孟飞\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"6422\",\r\n \"stuNo\": \"131703203129\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"吕兆华\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机网络应用[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2047\",\r\n \"realName\": \"蔡子阳\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4403\",\r\n \"stuNo\": \"151703204710\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"丁怡\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"城市轨道交通车辆运用与检修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2416\",\r\n \"realName\": \"曹新杰\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"3637\",\r\n \"stuNo\": \"121708241606\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘星宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2424\",\r\n \"realName\": \"程燕\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"2606\",\r\n \"stuNo\": \"131512242405\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"何山\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"跨境电子商务(联院大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2351\",\r\n \"realName\": \"侍根源\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4308\",\r\n \"stuNo\": \"151704235129\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"李解\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2445\",\r\n \"realName\": \"李晶晶\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1308\",\r\n \"stuNo\": \"141703244511\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"朱鑫仙\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"中药[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2304\",\r\n \"realName\": \"张绘绘\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"2213\",\r\n \"stuNo\": \"121208230407\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘帆\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2336\",\r\n \"realName\": \"李坤\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"6319\",\r\n \"stuNo\": \"132302233618\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"沈田予\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2428\",\r\n \"realName\": \"白卓阳\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6514\",\r\n \"stuNo\": \"131709242831\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"奚一飞\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"云计算技术应用[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2304\",\r\n \"realName\": \"徐浩然\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3133\",\r\n \"stuNo\": \"121208230432\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘帆\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2429\",\r\n \"realName\": \"程宇\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6516\",\r\n \"stuNo\": \"131711242945\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张威威\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2416\",\r\n \"realName\": \"邢腾飞\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3526\",\r\n \"stuNo\": \"121708241636\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘星宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2411\",\r\n \"realName\": \"陈孝睿\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3607\",\r\n \"stuNo\": \"121704241109\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"蒋羽兴\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2440\",\r\n \"realName\": \"刘嘉玲\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"1220\",\r\n \"stuNo\": \"141205244017\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"李允\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2449\",\r\n \"realName\": \"陈洪杰\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4328\",\r\n \"stuNo\": \"151507244906\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"薛枫\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修技术(联院大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2334\",\r\n \"realName\": \"尤梓涵\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"2420\",\r\n \"stuNo\": \"131711233433\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谈彦\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"唐玥妍\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"2230\",\r\n \"stuNo\": \"132301243014\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2407\",\r\n \"realName\": \"赵起豪\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5617\",\r\n \"stuNo\": \"111710240745\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谢村善\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2403\",\r\n \"realName\": \"吴梦瑶\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"1112\",\r\n \"stuNo\": \"111208240308\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"徐建锋\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"服务机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2459\",\r\n \"realName\": \"孙俪苇\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"1426\",\r\n \"stuNo\": \"141702245925\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谈丽\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物分析与检验[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2440\",\r\n \"realName\": \"蒋雨雯\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1219\",\r\n \"stuNo\": \"141205244013\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"李允\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2436\",\r\n \"realName\": \"刘墨轩\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"6129\",\r\n \"stuNo\": \"161205243618\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"邹婷婷\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修(氢能制备设备方向)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2413\",\r\n \"realName\": \"程龙\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3623\",\r\n \"stuNo\": \"121713241311\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"潘杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2450\",\r\n \"realName\": \"黄涛涛\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4412\",\r\n \"stuNo\": \"151205245020\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"许双双\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"城市轨道交通车辆运用与检修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2407\",\r\n \"realName\": \"潘顺鑫\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"5616\",\r\n \"stuNo\": \"111710240718\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谢村善\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2333\",\r\n \"realName\": \"王世杨\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"6601\",\r\n \"stuNo\": \"131709233342\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周坤\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"云计算技术应用[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"曹俊云\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"2229\",\r\n \"stuNo\": \"132301243001\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2408\",\r\n \"realName\": \"彭梓轩\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4121\",\r\n \"stuNo\": \"121509240822\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"魏小燕\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"机电一体化技术(数控车方向)(大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2332\",\r\n \"realName\": \"钱磊\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"6602\",\r\n \"stuNo\": \"131213233250\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"李月\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务(跨境电子商务)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2304\",\r\n \"realName\": \"张子涵\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"2213\",\r\n \"stuNo\": \"121208230408\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘帆\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2442\",\r\n \"realName\": \"董颖\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1415\",\r\n \"stuNo\": \"141208244206\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"卜清\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"健康与社会照护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2352\",\r\n \"realName\": \"蒋之中\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4329\",\r\n \"stuNo\": \"151704235217\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周松岳\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"周文钟\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4614\",\r\n \"stuNo\": \"151207224937\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"孙毓苑\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"2312\",\r\n \"stuNo\": \"151207224905\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2234\",\r\n \"realName\": \"梁士麟\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"6312\",\r\n \"stuNo\": \"131711223443\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"姜秀坤\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2251\",\r\n \"realName\": \"梁涛\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4622\",\r\n \"stuNo\": \"151704225125\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"曹鲁政\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2229\",\r\n \"realName\": \"倪文文\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2518\",\r\n \"stuNo\": \"131202222913\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"邵佳琦\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2243\",\r\n \"realName\": \"孙家宁\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1603\",\r\n \"stuNo\": \"141707224324\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"陈胜姝\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"烹饪(中西式面点)[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2247\",\r\n \"realName\": \"冯利明\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4605\",\r\n \"stuNo\": \"151203224719\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"胡卫锋\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"城市轨道交通车辆运用与检修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"殷俊\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4612\",\r\n \"stuNo\": \"151207224932\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2207\",\r\n \"realName\": \"巢孙阳\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3205\",\r\n \"stuNo\": \"121704220705\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"葛汶鑫\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2239\",\r\n \"realName\": \"祁馨蕊\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"1623\",\r\n \"stuNo\": \"141206223914\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"徐吉婷\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"旅游服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2233\",\r\n \"realName\": \"姚爱欣\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"2504\",\r\n \"stuNo\": \"131709223318\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"史轲\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"云计算技术应用[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2212\",\r\n \"realName\": \"王家鹏\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3333\",\r\n \"stuNo\": \"122301221218\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周青\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造技术应用[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2241\",\r\n \"realName\": \"张忻妤\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"1418\",\r\n \"stuNo\": \"141702224136\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"蒋达丁\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物分析与检验[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2250\",\r\n \"realName\": \"张柯梓\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4618\",\r\n \"stuNo\": \"151701225031\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"郑巧云\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"程浩栋\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4614\",\r\n \"stuNo\": \"151207224909\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"程涵栋\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4613\",\r\n \"stuNo\": \"151207224908\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"蒋家闰\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4612\",\r\n \"stuNo\": \"151207224913\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2238\",\r\n \"realName\": \"童艳\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"1627\",\r\n \"stuNo\": \"141205223828\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"孙剑锋\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2251\",\r\n \"realName\": \"顾博楷\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4624\",\r\n \"stuNo\": \"151704225111\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"曹鲁政\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2246\",\r\n \"realName\": \"顾嘉诚\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"4603\",\r\n \"stuNo\": \"151208224610\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"林丹\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车检测[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2208\",\r\n \"realName\": \"钱子灏\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"3207\",\r\n \"stuNo\": \"121713220815\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谢尧\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"庞金楠\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4613\",\r\n \"stuNo\": \"151207224918\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"胡蓉\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"2312\",\r\n \"stuNo\": \"151207224901\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2209\",\r\n \"realName\": \"马振祥\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3201\",\r\n \"stuNo\": \"121707220922\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"陈烨妍\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数字化设计与制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2230\",\r\n \"realName\": \"孙守成\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6304\",\r\n \"stuNo\": \"131205223037\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"曹菁\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"网络营销[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2321\",\r\n \"realName\": \"张阳光\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"5405\",\r\n \"stuNo\": \"111710222229\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"皋龙成\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"季欣娜\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"2312\",\r\n \"stuNo\": \"151207224902\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2251\",\r\n \"realName\": \"武冬妮\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"2314\",\r\n \"stuNo\": \"151704225102\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"曹鲁政\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2208\",\r\n \"realName\": \"刘子凡\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3207\",\r\n \"stuNo\": \"121713220812\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谢尧\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2231\",\r\n \"realName\": \"李小冉\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"2508\",\r\n \"stuNo\": \"131213223112\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周欣\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务(跨境电子商务)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2219\",\r\n \"realName\": \"刘睿\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"5627\",\r\n \"stuNo\": \"111701221917\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"陈海游\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"机电一体化技术[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2252\",\r\n \"realName\": \"冯祺\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"2314\",\r\n \"stuNo\": \"151703225201\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘纹\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"城市轨道交通车辆运用与检修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2205\",\r\n \"realName\": \"周靖\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"3325\",\r\n \"stuNo\": \"121206220532\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周剑\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控加工(数控车工)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2248\",\r\n \"realName\": \"张涛\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4611\",\r\n \"stuNo\": \"151206224836\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"韩壮\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"无人机应用技术[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2231\",\r\n \"realName\": \"张瑶\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2511\",\r\n \"stuNo\": \"131213223133\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周欣\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务(跨境电子商务)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"阮盛杰\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4614\",\r\n \"stuNo\": \"151207224919\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"徐涛\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"4614\",\r\n \"stuNo\": \"151207224926\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2251\",\r\n \"realName\": \"顾曦文\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4621\",\r\n \"stuNo\": \"151704225114\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"曹鲁政\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2219\",\r\n \"realName\": \"蒋磊\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5624\",\r\n \"stuNo\": \"111701221914\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"陈海游\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"机电一体化技术[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2214\",\r\n \"realName\": \"蔡铭骐\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6237\",\r\n \"stuNo\": \"111202221402\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"董城浩\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4615\",\r\n \"stuNo\": \"151207224910\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"王瑞年\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"4612\",\r\n \"stuNo\": \"151207224922\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2251\",\r\n \"realName\": \"朱宇航\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4620\",\r\n \"stuNo\": \"151704225149\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"曹鲁政\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2209\",\r\n \"realName\": \"管宝龙\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"3201\",\r\n \"stuNo\": \"121707220915\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"陈烨妍\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数字化设计与制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2231\",\r\n \"realName\": \"圣宇萱\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"2509\",\r\n \"stuNo\": \"131213223120\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周欣\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务(跨境电子商务)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2252\",\r\n \"realName\": \"陈星池\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4626\",\r\n \"stuNo\": \"151703225210\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘纹\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"城市轨道交通车辆运用与检修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"阚仔言\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4614\",\r\n \"stuNo\": \"151207224915\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"李子阳\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4612\",\r\n \"stuNo\": \"151207224917\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2207\",\r\n \"realName\": \"李绍康\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"3205\",\r\n \"stuNo\": \"121704220717\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"葛汶鑫\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2215\",\r\n \"realName\": \"李家祥\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"5524\",\r\n \"stuNo\": \"111204221509\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"申如意\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"机电设备安装与维修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"靳余明\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4613\",\r\n \"stuNo\": \"151207224914\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2457\",\r\n \"realName\": \"唐钤冰\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"2622\",\r\n \"stuNo\": \"131709245719\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张南\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"云计算技术应用[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2215\",\r\n \"realName\": \"汪杰\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"5526\",\r\n \"stuNo\": \"111204221521\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"申如意\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"机电设备安装与维修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"吴正阔\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"4613\",\r\n \"stuNo\": \"151207224924\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2236\",\r\n \"realName\": \"吴旭\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"6316\",\r\n \"stuNo\": \"132302223627\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"孙萌谣\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2231\",\r\n \"realName\": \"龙余婷\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2509\",\r\n \"stuNo\": \"131213223116\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周欣\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务(跨境电子商务)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"杨子锐\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4615\",\r\n \"stuNo\": \"151207224931\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2204\",\r\n \"realName\": \"朱子轩\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3317\",\r\n \"stuNo\": \"121204220437\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张成\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2416\",\r\n \"realName\": \"王宇溢\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"3526\",\r\n \"stuNo\": \"121708241632\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘星宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2221\",\r\n \"realName\": \"胡周炜\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6213\",\r\n \"stuNo\": \"111702222113\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周玲\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"杨岷沣\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4615\",\r\n \"stuNo\": \"151207224929\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"常云鹏\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4614\",\r\n \"stuNo\": \"151207224906\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"严海林\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"4615\",\r\n \"stuNo\": \"151207224927\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2252\",\r\n \"realName\": \"王玉\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"4625\",\r\n \"stuNo\": \"151703225233\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘纹\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"城市轨道交通车辆运用与检修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2249\",\r\n \"realName\": \"杨凯斌\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4613\",\r\n \"stuNo\": \"151207224928\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"管军\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"飞机维修(省交通联办班)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2106\",\r\n \"realName\": \"李志鹏\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"3525\",\r\n \"stuNo\": \"121705210611\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"姜利彬\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控机床装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2301\",\r\n \"realName\": \"赵子轩\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3624\",\r\n \"stuNo\": \"121204230141\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"朱琪\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2301\",\r\n \"realName\": \"徐子恒\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"3215\",\r\n \"stuNo\": \"121204230134\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"朱琪\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2439\",\r\n \"realName\": \"李敏\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"1225\",\r\n \"stuNo\": \"141205243915\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"查炀烁\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2416\",\r\n \"realName\": \"武佳豪\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"3526\",\r\n \"stuNo\": \"121708241635\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘星宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2352\",\r\n \"realName\": \"徐辉\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4311\",\r\n \"stuNo\": \"151704235237\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周松岳\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2425\",\r\n \"realName\": \"潘子轩\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"6527\",\r\n \"stuNo\": \"131211242545\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"杨奇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2440\",\r\n \"realName\": \"黄惜文\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"1219\",\r\n \"stuNo\": \"141205244012\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"李允\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2424\",\r\n \"realName\": \"陈佳铃\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"2614\",\r\n \"stuNo\": \"131512242403\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"何山\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"跨境电子商务(联院大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"常雅涵\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2229\",\r\n \"stuNo\": \"132301243002\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2413\",\r\n \"realName\": \"姚美华\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"3627\",\r\n \"stuNo\": \"121713241343\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"潘杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2403\",\r\n \"realName\": \"宋家娣\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"1121\",\r\n \"stuNo\": \"111208240306\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"徐建锋\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"服务机器人应用与维护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2406\",\r\n \"realName\": \"王仁昊\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5225\",\r\n \"stuNo\": \"111710240630\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"唐成宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2432\",\r\n \"realName\": \"刘佳程\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"5110\",\r\n \"stuNo\": \"161506243222\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"彭凤丽\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"机电一体化技术(电气方向)(大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2438\",\r\n \"realName\": \"祁天茹\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"5203\",\r\n \"stuNo\": \"161701243823\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"王新叶\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2413\",\r\n \"realName\": \"顾睿\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3625\",\r\n \"stuNo\": \"121713241315\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"潘杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2313\",\r\n \"realName\": \"周梦杰\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"5531\",\r\n \"stuNo\": \"111206231342\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"孙萍\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"焊接加工[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2340\",\r\n \"realName\": \"吴典\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"1325\",\r\n \"stuNo\": \"141208234035\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"杨荣\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"健康与社会照护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2424\",\r\n \"realName\": \"彭雨茜\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"2614\",\r\n \"stuNo\": \"131512242413\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"何山\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"跨境电子商务(联院大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2456\",\r\n \"realName\": \"吴泽云\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4119\",\r\n \"stuNo\": \"122301245653\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"夏涛\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造技术应用[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2406\",\r\n \"realName\": \"安臣铭\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5221\",\r\n \"stuNo\": \"111710240604\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"唐成宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2456\",\r\n \"realName\": \"方佳乐\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"4118\",\r\n \"stuNo\": \"122301245650\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"夏涛\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造技术应用[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2335\",\r\n \"realName\": \"袁旭栋\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"6321\",\r\n \"stuNo\": \"132301233541\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2327\",\r\n \"realName\": \"汤静雯\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"2330\",\r\n \"stuNo\": \"131509232720\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"丁翊\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"广告艺术设计(联院大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2338\",\r\n \"realName\": \"陈穗玲\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"1437\",\r\n \"stuNo\": \"141205233802\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"黄飞\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2442\",\r\n \"realName\": \"卢丽苹\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1407\",\r\n \"stuNo\": \"141208244217\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"卜清\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"健康与社会照护[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2417\",\r\n \"realName\": \"庄晓霖\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"4108\",\r\n \"stuNo\": \"122301241752\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"高阿兴\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造技术应用[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2348\",\r\n \"realName\": \"苗锦程\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"4426\",\r\n \"stuNo\": \"151208234825\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周璇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车检测[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2405\",\r\n \"realName\": \"缪京轩\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"5606\",\r\n \"stuNo\": \"111701240519\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"余震\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"机电一体化技术[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2322\",\r\n \"realName\": \"桑爱爽\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6221\",\r\n \"stuNo\": \"111702232224\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"翟雳\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2107\",\r\n \"realName\": \"刘豪\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3312\",\r\n \"stuNo\": \"121702210720\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"王宏宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控加工(数控铣)[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2451\",\r\n \"realName\": \"周鑫\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4511\",\r\n \"stuNo\": \"151206245148\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"陈颖\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"无人机应用技术[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2332\",\r\n \"realName\": \"孔梦婷\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"2413\",\r\n \"stuNo\": \"131213233216\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"李月\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务(跨境电子商务)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"沈聪\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6521\",\r\n \"stuNo\": \"132301243041\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2353\",\r\n \"realName\": \"吴榆炜\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4315\",\r\n \"stuNo\": \"151701235328\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"戚家文\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2416\",\r\n \"realName\": \"陈辰\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3637\",\r\n \"stuNo\": \"121708241607\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘星宇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2413\",\r\n \"realName\": \"陈聪\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3623\",\r\n \"stuNo\": \"121713241309\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"潘杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"智能制造设备装配与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2431\",\r\n \"realName\": \"李亚豪\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5107\",\r\n \"stuNo\": \"161506243122\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"高扬\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"机电一体化技术(电气方向)(大专)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2317\",\r\n \"realName\": \"廖越\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"5321\",\r\n \"stuNo\": \"111204231717\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周熠\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"机电设备安装与维修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n },\r\n {\r\n \"classNo\": \"2452\",\r\n \"realName\": \"张雷昊\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"4619\",\r\n \"stuNo\": \"151704245242\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张风密\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"新能源汽车检测与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2331\",\r\n \"realName\": \"朱国强\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"6603\",\r\n \"stuNo\": \"131202233155\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"吴伟杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2453\",\r\n \"realName\": \"李奥鹏\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"4407\",\r\n \"stuNo\": \"151701245319\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"华晨磊\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2342\",\r\n \"realName\": \"伊梦雨\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"1205\",\r\n \"stuNo\": \"141702234234\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"张爱华\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药物分析与检验[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2312\",\r\n \"realName\": \"张睿\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"6101\",\r\n \"stuNo\": \"111202231240\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"赵烨菊\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2104\",\r\n \"realName\": \"马恩强\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3308\",\r\n \"stuNo\": \"121704210424\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"姜利彬\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"工业机器人应用与维护[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2439\",\r\n \"realName\": \"宦依萱\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"1225\",\r\n \"stuNo\": \"141205243911\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"查炀烁\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"药品服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2331\",\r\n \"realName\": \"杨家宝\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"6602\",\r\n \"stuNo\": \"131202233154\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"吴伟杰\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2304\",\r\n \"realName\": \"毛佳琪\",\r\n \"bedNo\": \"5\",\r\n \"roomNo\": \"3137\",\r\n \"stuNo\": \"121208230419\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘帆\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2308\",\r\n \"realName\": \"张文强\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3115\",\r\n \"stuNo\": \"121702230844\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"高进祥\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控加工(数控铣)[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2437\",\r\n \"realName\": \"汪子康\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5128\",\r\n \"stuNo\": \"161701243730\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"殷庆武\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"16\",\r\n \"majorName\": \"电气自动化设备安装与维修[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"新能源学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"吴婧升\",\r\n \"bedNo\": \"3\",\r\n \"roomNo\": \"2231\",\r\n \"stuNo\": \"132301243017\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2344\",\r\n \"realName\": \"汤明慧\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"1316\",\r\n \"stuNo\": \"141703234431\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"高颖\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"中药[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2303\",\r\n \"realName\": \"杨兵兵\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"3213\",\r\n \"stuNo\": \"121206230328\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"魏君一\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控加工(数控车工)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2105\",\r\n \"realName\": \"赵志远\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"3530\",\r\n \"stuNo\": \"121708210535\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"徐燕\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"模具制造[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2303\",\r\n \"realName\": \"孙俊杰\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"3213\",\r\n \"stuNo\": \"121206230322\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"魏君一\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"12\",\r\n \"majorName\": \"数控加工(数控车工)[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能制造学院\"\r\n },\r\n {\r\n \"classNo\": \"2334\",\r\n \"realName\": \"梁天晴\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"2421\",\r\n \"stuNo\": \"131711233415\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谈彦\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"计算机广告制作[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2339\",\r\n \"realName\": \"从欢欢\",\r\n \"bedNo\": \"2\",\r\n \"roomNo\": \"1307\",\r\n \"stuNo\": \"141206233905\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"俞应进\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"14\",\r\n \"majorName\": \"旅游服务与管理[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"医药康养学院\"\r\n },\r\n {\r\n \"classNo\": \"2336\",\r\n \"realName\": \"陈伟杰\",\r\n \"bedNo\": \"1\",\r\n \"roomNo\": \"6317\",\r\n \"stuNo\": \"132302233614\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"沈田予\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"电子商务[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2430\",\r\n \"realName\": \"周梓怡\",\r\n \"bedNo\": \"6\",\r\n \"roomNo\": \"2231\",\r\n \"stuNo\": \"132301243023\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"刘智志\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"13\",\r\n \"majorName\": \"视觉传达艺术设计[四](高)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"信息服务学院\"\r\n },\r\n {\r\n \"classNo\": \"2348\",\r\n \"realName\": \"薛怡晨\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"2315\",\r\n \"stuNo\": \"151208234809\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"周璇\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"15\",\r\n \"majorName\": \"汽车检测[五](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"交通运输学院\"\r\n },\r\n {\r\n \"classNo\": \"2407\",\r\n \"realName\": \"邵明阳\",\r\n \"bedNo\": \"4\",\r\n \"roomNo\": \"5616\",\r\n \"stuNo\": \"111710240722\",\r\n \"buildingNo\": null,\r\n \"teacherRealName\": \"谢村善\",\r\n \"teacherPhone\": null,\r\n \"deptCode\": \"11\",\r\n \"majorName\": \"工业机械自动化装调[六](初)\",\r\n \"teacherNo\": null,\r\n \"deptName\": \"智能装备学院\"\r\n }\r\n ],\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormbuildingmanger/page": { "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": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"c3574396b6f9f28b6472e3d890a9424b\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-09-21 14:29:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"1\",\r\n \"username\": \"00383\"\r\n },\r\n {\r\n \"id\": \"971194a979f2caab47aa5fd153dcfbc4\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-09-21 14:29:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"1\",\r\n \"username\": \"00039\"\r\n },\r\n {\r\n \"id\": \"ad40c3ed7aef15ddda201e415af07c55\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-09-21 14:29:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"1\",\r\n \"username\": \"00511\"\r\n },\r\n {\r\n \"id\": \"c424efb392cd021eade8d126acf373e6\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-14 20:01:39\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"2\",\r\n \"username\": \"00383\"\r\n },\r\n {\r\n \"id\": \"09de4fc72fbc2d52f7c35c02a1249265\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-14 20:01:39\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"2\",\r\n \"username\": \"00511\"\r\n },\r\n {\r\n \"id\": \"2018845f744a82d6277a21219f8a0ca1\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-14 20:01:39\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"2\",\r\n \"username\": \"00301\"\r\n },\r\n {\r\n \"id\": \"6a4ff75b18a661adc1641e7dbfd2d83b\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-15 10:49:34\",\r\n \"updateBy\": \"admin\",\r\n \"updateTime\": \"2020-09-21 19:22:33\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"3\",\r\n \"username\": \"00039\"\r\n },\r\n {\r\n \"id\": \"328919d166801391fb37f047b8752b77\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-15 12:19:20\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"3\",\r\n \"username\": \"00039\"\r\n },\r\n {\r\n \"id\": \"edd6fef5cf99bc5683859ae508bc843f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-15 10:49:34\",\r\n \"updateBy\": \"admin\",\r\n \"updateTime\": \"2020-09-21 19:22:42\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"3\",\r\n \"username\": \"00511\"\r\n },\r\n {\r\n \"id\": \"4bae1ec544835b8797a1c19458210544\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2020-07-15 12:19:20\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildingNo\": \"3\",//楼号\r\n \"username\": \"00301\"//管理员工号\r\n }\r\n ],\r\n \"total\": 22,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 3\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudentchange/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": "classNo", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "changeType", "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 \"records\": [\r\n {\r\n \"id\": \"67dc1880a20e51c5ee26ad76c6148110\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-09 11:44:41\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"151203254615\",//学号\r\n \"changeType\": \"1\",//异动类型\r\n \"roomNo\": null,//原宿舍号\r\n \"bedNo\": null,//原床号\r\n \"newRoomNo\": \"1000000001\",//新楼号\r\n \"newBedNo\": \"1\",//新床号\r\n \"deptCode\": null,\r\n \"deptName\": null,//学院\r\n \"classNo\": null,//班号\r\n \"classCode\": null,\r\n \"realName\": null//姓名\r\n },\r\n {\r\n \"id\": \"168505e1595ba7a3cc08253efb9d23d3\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-09-01 15:12:45\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"112301250712\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"2110\",\r\n \"newBedNo\": \"5\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"d797590362d42c04fe746706a071d631\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-03-10 12:54:11\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"131507241906\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"2101\",\r\n \"newBedNo\": \"6\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"9b183f7310fc7e73aad2f168e3a70fc5\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-03-04 10:16:08\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"131202233149\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"6602\",\r\n \"newBedNo\": \"3\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"3bb4a1684902a72472c285b3df68c301\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-03-04 10:15:48\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"131202233146\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"6602\",\r\n \"newBedNo\": \"4\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"35808012a88429570776ef193ba51b3c\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-02-28 13:13:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"151701225030\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"4617\",\r\n \"newBedNo\": \"1\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"dfcdf04daa4524acd7a35858d728a67b\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-02-25 08:09:55\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"121203241044\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"3602\",\r\n \"newBedNo\": \"6\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"74a3e1b239e81fd5ac39d0d67a923fc0\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-02-21 15:49:11\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"151701235318\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"4313\",\r\n \"newBedNo\": \"5\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"aceec75160d9a93d5ca1a970a4bc2ce8\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-02-21 15:48:23\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"151701235334\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"4314\",\r\n \"newBedNo\": \"3\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n },\r\n {\r\n \"id\": \"cd726704e80adc67f15984b95626b657\",\r\n \"createBy\": \"14142\",\r\n \"createTime\": \"2025-02-21 15:47:39\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"stuNo\": \"151701235337\",\r\n \"changeType\": \"1\",\r\n \"roomNo\": null,\r\n \"bedNo\": null,\r\n \"newRoomNo\": \"4314\",\r\n \"newBedNo\": \"2\",\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNo\": null,\r\n \"classCode\": null,\r\n \"realName\": null\r\n }\r\n ],\r\n \"total\": 8982,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 899\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/change_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/stuwork/waterorder/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": "roomNo", "in": "query", "description": "宿舍号", "required": false, "example": "1101", "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "学年", "required": false, "example": "2023-2024", "schema": { "type": "string" } }, { "name": "period", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/dorm_water_source_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/dorm_water_payment_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/dorm_water_charge_state": { "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/dorm_water_state": { "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/waterorder": { "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 \"roomNo\": \"1101\",//房号\r\n \"year\": \"2025-2026\",//学年\r\n \"period\": \"2\",//学期\r\n \"orderNum\": \"\",\r\n \"type\": \"1\",//类型\r\n \"paymentCode\": \"0\",//充值类型\r\n \"money\": 1000,//金额\r\n \"chargeAccount\": \"1\",//充值账户\r\n \"chargeRealname\": \"系统\",//充值人\r\n \"chargeState\": \"1\",//结果\r\n \"state\": \"1\"//状态\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterorder/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\":\"1044d246566b334e745a2b7e6a8e1906\",\r\n \"roomNo\": \"1101\",//房号\r\n \"year\": \"2025-2026\",//学年\r\n \"period\": \"2\",//学期\r\n \"orderNum\": \"\",\r\n \"type\": \"1\",//类型\r\n \"paymentCode\": \"0\",//充值类型\r\n \"money\": 1000,//金额\r\n \"chargeAccount\": \"1\",//充值账户\r\n \"chargeRealname\": \"系统\",//充值人\r\n \"chargeState\": \"1\",//结果\r\n \"state\": \"1\"//状态\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterorder/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": [ "1044d246566b334e745a2b7e6a8e1906" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterorder/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "1044d246566b334e745a2b7e6a8e1906", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterdetail/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/waterdetail/initWaterOrder": { "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": { "costMoney": 250.2 } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterdetail/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": "roomNo", "in": "query", "description": "宿舍号", "required": false, "example": "1101", "schema": { "type": "string" } }, { "name": "buildNo", "in": "query", "description": "1楼号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "effectiveMoney", "in": "query", "description": "可用余额大于多少", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "isLiveNum", "in": "query", "description": "已住人数是否大于0", "required": false, "example": "", "schema": { "type": "boolean" } }, { "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 \"records\": [\r\n {\r\n \"id\": \"6ff82fbc-ea4b-11f0-9656-0242ac120002\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-05 23:30:17\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildNo\": \"1\",//楼号\r\n \"roomNo\": \"1101\",//宿舍号\r\n \"bedNum\": 6,//几人间\r\n \"liveNum\": 0,//已住人数\r\n \"classNo\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"oddbMoney\": 0.00,//校园补贴\r\n \"costMoney\": 291.10,//已使用金额\r\n \"effectiveMoney\": -291.10,//可用金额\r\n \"rechargeMoney\": 0//充值金额\r\n }\r\n ],\r\n \"total\": 1,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterdetail": { "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 \"buildNo\": \"7\",//楼号\r\n \"roomNo\": \"9999\",//宿舍号\r\n \"bedNum\": \"4\",//床位数\r\n \"liveNum\": 0,//已住人数\r\n \"classNo\": \"1111\",//班号\r\n \"teacherNo\": \"2222\",//班主任工号\r\n \"teacherRealName\": \"222\",//班主任姓名\r\n \"oddbMoney\": 200,//充值金额\r\n \"rechargeMoney\": \"\",\r\n \"costMoney\": 100,//已花费金额\r\n \"effectiveMoney\": 0\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/waterdetail/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\": \"6ff82fbc-ea4b-11f0-9656-0242ac120002\",\r\n \"roomNo\": \"1102\",//宿舍号\r\n \"year\": \"2025\",//年份\r\n \"month\": \"12\",//月份\r\n \"subiMonthSum\": \"100\",//用量\r\n \"subWatFlagSum\": \"100\",//费用\r\n \"flag\": \"2\",//用电用水\r\n \"meterNum\": \"11\"//冷水热水\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/watermonthreport/lookDetails": { "get": { "summary": "明细", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "roomNo", "in": "query", "description": "", "required": false, "example": "1101", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/watermonthreport/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": [ "914deb8fc87c9a7604e57c9bd1a0dc26" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/watermonthreport/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": {} }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"6ff82fbc-ea4b-11f0-9656-0242ac120002\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-05 23:30:17\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"buildNo\": \"1\",//楼号\r\n \"roomNo\": \"1101\",//宿舍号\r\n \"bedNum\": 6,//几人间\r\n \"liveNum\": 0,//已住人数\r\n \"classNo\": null,\r\n \"teacherNo\": null,\r\n \"teacherRealName\": null,\r\n \"oddbMoney\": 0.00,//校园补贴\r\n \"costMoney\": 291.10,//已使用金额\r\n \"effectiveMoney\": -291.10,//可用金额\r\n \"rechargeMoney\": 0//充值金额\r\n }\r\n ],\r\n \"total\": 1,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/watermonthreport": { "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 \"roomNo\": \"1102\",//宿舍号\r\n \"year\": \"2025\",//年份\r\n \"month\": \"12\",//月份\r\n \"subiMonthSum\": \"100\",//用量\r\n \"subWatFlagSum\": \"100\",//费用\r\n \"flag\": \"2\",//用电用水\r\n \"meterNum\": \"11\"//冷水热水\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/watermonthreport/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": "6ff82fbc-ea4b-11f0-9656-0242ac120002", "buildNo": "1", "roomNo": "1101", "bedNum": 6, "liveNum": 0, "classNo": null, "teacherNo": null, "teacherRealName": null, "oddbMoney": 0, "costMoney": 291.1, "effectiveMoney": -291.1, "rechargeMoney": 0 } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/watermonthreport/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "e56c0f29ce94bb27b0de133a40dd99ee", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classconstruction/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": "classNo", "in": "query", "description": "班号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "title", "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classconstruction": { "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" } } ], "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classconstruction/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\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"remarks\": null,//备注\r\n \"title\": \"\",//标题\r\n \"content\": null//内容\r\n }" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classconstruction/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": [ "3bb31582856327f9d5789f8f7fac9b58" ] } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classconstruction/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "3bb31582856327f9d5789f8f7fac9b58", "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classplan/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": "array", "items": { "type": "string" } } }, { "name": "classCode", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "状态", "required": false, "example": "", "schema": { "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": "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classplan": { "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": { "deptCode": "", "schoolYear": "2025-2026", "schoolTerm": "2", "classCode": "1512032546", "title": "222", "createTime": "", "status": "", "createBy": "", "content": "

333333

", "$deptCode": "2546", "$schoolYear": "2025-2026", "$schoolTerm": "2", "$classCode": "2546", "$status": "2546", "$createBy": "2546" } } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classplan/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": "d66dcae122c685bece78c0ebdd8394de", "deptCode": "", "schoolYear": "2025-2026", "schoolTerm": "2", "classCode": "1512032546", "title": "222", "createTime": "", "status": "", "createBy": "", "content": "

333333

" } } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classplan/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": [ "3bb31582856327f9d5789f8f7fac9b58" ] } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classplan/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "3bb31582856327f9d5789f8f7fac9b58", "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classpaper/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": "classCode", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "", "required": false, "example": "0", "schema": { "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": "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classpaper": { "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 \"deptName\": \"\",\r\n \"classCode\": \"1517042549\",\r\n \"teacherRealName\": \"\",\r\n \"title\": \"2333\",\r\n \"type\": \"0\",//类型\r\n \"journal\": \"333\",//发表刊物\r\n \"page\": 100,//页码\r\n \"description\": \"333\",//内容\r\n \"isAddScore\": \"\",\r\n \"attachment\":\"/\"//附件地址\r\n}" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classpaper/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\":\"930314d98998f90c1e179b43a3b7cb98\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptName\": \"\",\r\n \"classCode\": \"1517042549\",\r\n \"teacherRealName\": \"\",\r\n \"title\": \"2333\",\r\n \"type\": \"0\",//类型\r\n \"journal\": \"333\",//发表刊物\r\n \"page\": 100,//页码\r\n \"description\": \"333\",//内容\r\n \"isAddScore\": \"\",\r\n \"attachment\":\"/\"//附件地址\r\n}" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classpaper/addScore": { "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\": \"8e56521485ce1e8dd80c61a3da04409c\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-09 18:04:27\",\r\n \"delFlag\": \"0\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"classCode\": \"1517042549\",\r\n \"title\": \"2333\",\r\n \"journal\": \"333\",\r\n \"page\": 100,\r\n \"description\": \"333\",\r\n \"attachment\": \"\",\r\n \"isAddScore\": \"1\",//是否加分1为是\r\n \"type\": \"0\",\r\n \"teacherRealName\": \"管军\",\r\n \"deptName\": \"交通运输学院\"\r\n}" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classpaper/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": [ "3bb31582856327f9d5789f8f7fac9b58" ] } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classpaper/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "3bb31582856327f9d5789f8f7fac9b58", "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classthemerecord/page": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "schoolTerm", "in": "query", "description": "", "required": false, "example": [ "1" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "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": "schoolYear", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "isDb", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classNo", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "examples": {} } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"3043bab5981d34af8de9420e07a29e4a\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2024-07-23 09:54:59\",\r\n \"updateBy\": \"00723\",\r\n \"updateTime\": \"2025-05-26 14:09:50\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2024-2025\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"classNo\": \"2234\",//班号\r\n \"deptCode\": \"13\",//学院代码\r\n \"count\": 5//上传次数\r\n },\r\n {\r\n \"id\": \"95c9621dd276c11ec6079ddf7256853a\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2024-07-23 09:54:59\",\r\n \"updateBy\": \"00321\",\r\n \"updateTime\": \"2025-07-03 09:38:41\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2024-2025\",\r\n \"schoolTerm\": \"1\",\r\n \"classNo\": \"2456\",\r\n \"deptCode\": \"12\",\r\n \"count\": 30\r\n }\r\n ],\r\n \"total\": 2,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classthemerecord": { "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}" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classthemerecord/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": [ "3bb31582856327f9d5789f8f7fac9b58" ] } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classthemerecord/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "3bb31582856327f9d5789f8f7fac9b58", "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classtheme/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": "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": "classNo", "in": "query", "description": "", "required": false, "example": "2250", "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "example": "15", "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": {} }, "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" ] } } } } }, "security": [] } }, "/api/stuwork/classtheme": { "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 \"deptCode\": \"15\",//学院\r\n \"classNo\": \"2250\",//班号\r\n \"isDb\": \"\",\r\n \"title\": \"22\",//主题\r\n \"content\": \"

11

\",//内容\r\n \"createTime\": \"\",\r\n \"fileUrl\": \"/11\"//附件地址\r\n}" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classtheme/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\":\"ef575071089e765a251ccc4fbc1ee83e\",\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"deptCode\": \"15\",//学院\r\n \"classNo\": \"2250\",//班号\r\n \"isDb\": \"\",\r\n \"title\": \"22\",//主题\r\n \"content\": \"

11

\",//内容\r\n \"createTime\": \"\",\r\n \"fileUrl\": \"/11\"//附件地址\r\n}" } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classtheme/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": { "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classtheme/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "ef575071089e765a251ccc4fbc1ee83e", "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": {} }, "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/admin/dict/type/class_paper_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/status_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/stuwork/classsummary/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": "ff51b05d1a1f83e3c9de7e77b60fb72e", "schoolYear": "2025-2026", "schoolTerm": "1", "deptCode": "", "classCode": "1517042549", "totalCnt": 0, "boyCnt": 0, "girlCnt": 0, "boyDormCnt": 0, "girlDormCnt": 0, "keepSchoolCnt": 0, "gigCnt": 0, "seriousWarningCnt": 0, "warningCnt": 0, "revokeCnt": 0, "dropCnt": 0, "summary": "

2

", "status": "1" } } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classsummary/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": [ "3bb31582856327f9d5789f8f7fac9b58" ] } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/classsummary/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "3bb31582856327f9d5789f8f7fac9b58", "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"02cc408a5e85a568f39671ae63bae85d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",//标题\r\n \"fileUrl\": \"\",//文件\r\n \"content\": null,//内容\r\n \"classNo\": \"2541\",//班号\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": null//学院名称\r\n },\r\n {\r\n \"id\": \"1461fcae977486b0a36199b40f7c1c84\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2505\",\r\n \"deptCode\": \"11\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"1b7aa8ef7632f66318eda40b429c4c7d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2519\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"23464314091e7d8913131573c6be308f\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2538\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"290e2377800249c55bde2095d2bb99d8\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2514\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"29198fad41697bba388c78fe45a7e25d\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2512\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"2954b0c91b869677d3d3d1d482d43897\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2513\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"325fd7ff86f8cfae5ce514b062872b90\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2520\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"365a892496e7472b43d5fc9ac8005c76\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2537\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": null\r\n },\r\n {\r\n \"id\": \"3bb31582856327f9d5789f8f7fac9b58\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-10-13 13:45:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"title\": \"\",\r\n \"fileUrl\": \"\",\r\n \"content\": null,\r\n \"classNo\": \"2518\",\r\n \"deptCode\": \"13\",\r\n \"deptName\": null\r\n }\r\n ],\r\n \"total\": 284,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 29\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classsummary/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": "classNo", "in": "query", "description": "班号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "", "required": false, "example": "2024-2025", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "状态", "required": false, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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\": \"ff51b05d1a1f83e3c9de7e77b60fb72e\",\r\n \"createBy\": null,\r\n \"createTime\": \"2023-01-05 14:14:07\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1115081901\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 40,//总人数\r\n \"boyCnt\": 39,//男生人数\r\n \"girlCnt\": 1,//女生人数\r\n \"boyDormCnt\": 17,//男住宿\r\n \"girlDormCnt\": 1,//女住宿\r\n \"keepSchoolCnt\": 0,//留校查看\r\n \"gigCnt\": 0,//记过\r\n \"seriousWarningCnt\": 0,//严重警告\r\n \"warningCnt\": 0,//警告\r\n \"revokeCnt\": 0,//撤销处分\r\n \"dropCnt\": 0,//退学人数\r\n \"summary\": null,\r\n \"status\": \"1\"//状态\r\n },\r\n {\r\n \"id\": \"5aa9be21fa1070aa232271e26558e802\",\r\n \"createBy\": null,\r\n \"createTime\": \"2023-01-04 17:23:24\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"0817021842\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 35,\r\n \"boyCnt\": 35,\r\n \"girlCnt\": 0,\r\n \"boyDormCnt\": 10,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 1,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"0ea47ac258d53a28325078151d503bae\",\r\n \"createBy\": null,\r\n \"createTime\": \"2023-01-03 20:46:02\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1312061927\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 0,\r\n \"boyCnt\": 0,\r\n \"girlCnt\": 0,\r\n \"boyDormCnt\": 0,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 0,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"3dfed3893c5591f14e74b3d7652fce1a\",\r\n \"createBy\": null,\r\n \"createTime\": \"2023-01-03 10:33:30\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1132022223\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 19,\r\n \"boyCnt\": 18,\r\n \"girlCnt\": 1,\r\n \"boyDormCnt\": 15,\r\n \"girlDormCnt\": 1,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 0,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"e917297861cdefa4a48b2ec55c330b46\",\r\n \"createBy\": null,\r\n \"createTime\": \"2023-01-02 04:32:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1223011919\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 27,\r\n \"boyCnt\": 27,\r\n \"girlCnt\": 0,\r\n \"boyDormCnt\": 21,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 0,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"28869b11eebdb1cb4bca08d43011964a\",\r\n \"createBy\": null,\r\n \"createTime\": \"2023-01-01 00:33:06\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1123012224\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 22,\r\n \"boyCnt\": 21,\r\n \"girlCnt\": 1,\r\n \"boyDormCnt\": 20,\r\n \"girlDormCnt\": 1,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 1,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"c155f645ce1ae480fa29a065b0aa431c\",\r\n \"createBy\": null,\r\n \"createTime\": \"2022-12-31 13:51:43\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"0315211811\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 33,\r\n \"boyCnt\": 33,\r\n \"girlCnt\": 0,\r\n \"boyDormCnt\": 21,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 0,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"db2169fb2775b6a319991bd45c49a479\",\r\n \"createBy\": null,\r\n \"createTime\": \"2022-12-30 20:53:09\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"0912131849\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 46,\r\n \"boyCnt\": 19,\r\n \"girlCnt\": 27,\r\n \"boyDormCnt\": 0,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 1,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"2ec026a180d95f51afba64497f482881\",\r\n \"createBy\": null,\r\n \"createTime\": \"2022-12-30 15:06:44\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1522062147\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 11,\r\n \"boyCnt\": 11,\r\n \"girlCnt\": 0,\r\n \"boyDormCnt\": 9,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 0,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n },\r\n {\r\n \"id\": \"0abc5fdc5a1ca64d02d61f9c01817e2c\",\r\n \"createBy\": null,\r\n \"createTime\": \"2022-12-30 15:06:23\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1523042148\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"totalCnt\": 11,\r\n \"boyCnt\": 11,\r\n \"girlCnt\": 0,\r\n \"boyDormCnt\": 10,\r\n \"girlDormCnt\": 0,\r\n \"keepSchoolCnt\": 0,\r\n \"gigCnt\": 0,\r\n \"seriousWarningCnt\": 0,\r\n \"warningCnt\": 0,\r\n \"revokeCnt\": 0,\r\n \"dropCnt\": 0,\r\n \"summary\": null,\r\n \"status\": \"1\"\r\n }\r\n ],\r\n \"total\": 1466,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 147\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classsummary": { "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": { "schoolYear": "2025-2026", "schoolTerm": "1", "deptCode": "", "classCode": "1517042549", "totalCnt": 0, "boyCnt": 0, "girlCnt": 0, "boyDormCnt": 0, "girlDormCnt": 0, "keepSchoolCnt": 0, "gigCnt": 0, "seriousWarningCnt": 0, "warningCnt": 0, "revokeCnt": 0, "dropCnt": 0, "summary": "

2

", "status": "1" } } } }, "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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/rewardstudent/getList": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "1417072412", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": "2024-2025", "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": { "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": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "title": { "type": "string" }, "fileUrl": { "type": "string" }, "content": { "type": "null" }, "classNo": { "type": "string" }, "deptCode": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "title", "fileUrl", "content", "classNo", "deptCode" ] } }, "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 \"departName\": \"智能制造学院\",//学院\r\n \"classCode\": \"1417072412\",//班级代码\r\n \"classNo\": \"2412\",//班号\r\n \"realName\": \"梅宸滔\",//姓名\r\n \"stuNo\": \"141707241233\",//学号\r\n \"averageConduct\": 85.00,//操行平均分\r\n \"averageScore\": 0,//平均分\r\n \"violation\": null,//违规违纪\r\n \"upDateTime\": \"\",//保存时间\r\n \"ruleName\": [],//奖项\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"郝馨\",\r\n \"stuNo\": \"141707241204\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"胡皓哲\",\r\n \"stuNo\": \"141707241222\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"王伟杰\",\r\n \"stuNo\": \"141707241240\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"程启尧\",\r\n \"stuNo\": \"141707241217\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"黄吉\",\r\n \"stuNo\": \"141707241224\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"李进涛\",\r\n \"stuNo\": \"141707241227\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"时宇豪\",\r\n \"stuNo\": \"141707241236\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"刘铭俊\",\r\n \"stuNo\": \"141707241231\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"唐睿\",\r\n \"stuNo\": \"141707241209\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"李维诺\",\r\n \"stuNo\": \"141707241228\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"张紫洁\",\r\n \"stuNo\": \"141707241216\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"何陆宁\",\r\n \"stuNo\": \"141707241221\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"周杰\",\r\n \"stuNo\": \"141707241248\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"王昱锦\",\r\n \"stuNo\": \"141707241241\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"周信威\",\r\n \"stuNo\": \"141707241249\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"张慈\",\r\n \"stuNo\": \"141707241244\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"徐诗雅\",\r\n \"stuNo\": \"141707241213\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"蒋志义\",\r\n \"stuNo\": \"141707241225\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"胡子阳\",\r\n \"stuNo\": \"141707241223\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"吴星宇\",\r\n \"stuNo\": \"141707241242\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"刘奕晨\",\r\n \"stuNo\": \"141707241205\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"廖锦鸿\",\r\n \"stuNo\": \"141707241230\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"张洁\",\r\n \"stuNo\": \"141707241215\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"张宇航\",\r\n \"stuNo\": \"141707241247\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"刁佳炜\",\r\n \"stuNo\": \"141707241219\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"邓静茹\",\r\n \"stuNo\": \"141707241202\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"丁宇\",\r\n \"stuNo\": \"141707241220\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"徐焱\",\r\n \"stuNo\": \"141707241243\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"彭俊煊\",\r\n \"stuNo\": \"141707241235\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"张浩杨\",\r\n \"stuNo\": \"141707241245\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"顾宇洁\",\r\n \"stuNo\": \"141707241203\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"陈洁\",\r\n \"stuNo\": \"141707241201\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"孙雨心\",\r\n \"stuNo\": \"141707241208\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"戴亚军\",\r\n \"stuNo\": \"141707241218\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"孟怀程\",\r\n \"stuNo\": \"141707241234\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"孙焕\",\r\n \"stuNo\": \"141707241237\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"吴成巧\",\r\n \"stuNo\": \"141707241210\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"柯烨磊\",\r\n \"stuNo\": \"141707241226\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"夏秋萍\",\r\n \"stuNo\": \"141707241212\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"朱金海\",\r\n \"stuNo\": \"141707241250\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"郄敬茹\",\r\n \"stuNo\": \"141707241211\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"李玉群\",\r\n \"stuNo\": \"141707241229\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n },\r\n {\r\n \"departName\": \"智能制造学院\",\r\n \"classCode\": \"1417072412\",\r\n \"classNo\": \"2412\",\r\n \"realName\": \"滕文强\",\r\n \"stuNo\": \"141707241238\",\r\n \"averageConduct\": 85.00,\r\n \"averageScore\": 0,\r\n \"violation\": null,\r\n \"upDateTime\": \"\",\r\n \"ruleName\": [],\r\n \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"id\": null\r\n }\r\n ],\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/filemanager/editFile": { "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\":\"0efe020b325035fc0edf3363f66d1d02\",\r\n \"parentId\": \"-1\",\r\n \"classification\": \"测试文件夹11\"//名称\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/filemanager/list": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "level", "in": "query", "description": "", "required": false, "example": "0", "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": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "fileName": { "type": "null" }, "fileUrl": { "type": "null" }, "classification": { "type": "string" }, "level": { "type": "integer" }, "parentId": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "fileName", "fileUrl", "classification", "level", "parentId" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } } } }, "security": [] } }, "/api/stuwork/filemanager/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": "parentId", "in": "query", "description": "", "required": false, "example": "f45db7c5c2b05bb8252b05cc3a810740", "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": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "fileName": { "type": "null" }, "fileUrl": { "type": "null" }, "classification": { "type": "string" }, "level": { "type": "integer" }, "parentId": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "fileName", "fileUrl", "classification", "level", "parentId" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/filemanager": { "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 \"fileName\": \"测试\",//名称\r\n \"remarks\": \"222\",//备注\r\n \"fileUrl\": \"1111\",//路径\r\n \"parentId\": \"f45db7c5c2b05bb8252b05cc3a810740\",//文件夹id\r\n \"level\": \"1\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/filemanager/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\":\"114caa084ec51480fa8933b06f01aa7f\",\r\n \"fileName\": \"测试\",//名称\r\n \"remarks\": \"222\",//备注\r\n \"fileUrl\": \"1111\",//路径\r\n \"parentId\": \"f45db7c5c2b05bb8252b05cc3a810740\",//文件夹id\r\n \"level\": \"1\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/filemanager/detail": { "get": { "summary": "文件详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "114caa084ec51480fa8933b06f01aa7f", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/filemanager/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/moralplan/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": "schoolTerm", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "", "required": false, "example": "2020-2021", "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "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\": \"e7205ef7f854405896de655d1ea14229\",\r\n \"createBy\": \"00421\",\r\n \"createTime\": \"2020-09-07 18:00:35\",\r\n \"updateBy\": \"00421\",\r\n \"updateTime\": \"2020-09-07 18:00:35\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",//备注\r\n \"schoolYear\": \"2020-2021\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"title\": \"2020-2021学年德育工作计划\",//标题\r\n \"content\": \"<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249); text-align: center;">\\r\\n\\t<img alt="1.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476257140783.jpeg" style="margin: 0px; padding: 0px; list-style-type: none;" title="1599476257140783.jpeg" /></p>\\r\\n<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249);">\\r\\n\\t&nbsp;</p>\\r\\n<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249); text-align: center;">\\r\\n\\t<img alt="2.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476262688083.jpeg" style="margin: 0px; padding: 0px; list-style-type: none;" title="1599476262688083.jpeg" /></p>\",\r\n \"author\": \"基础部\"//作者\r\n }\r\n ],\r\n \"total\": 1,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/moralplan": { "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": { "schoolYear": "2025-2026", "schoolTerm": "1", "title": "测试", "author": "测试作者", "content": "

22

", "createTime": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/moralplan/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": "e7205ef7f854405896de655d1ea14229", "remarks": "", "schoolYear": "2020-2021", "schoolTerm": "1", "title": "2020-2021学年德育工作计划", "content": "<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249); text-align: center;">\r\n\t<img alt="1.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476257140783.jpeg" style="margin: 0px; padding: 0px; list-style-type: none;" title="1599476257140783.jpeg" /></p>\r\n<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249);">\r\n\t&nbsp;</p>\r\n<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249); text-align: center;">\r\n\t<img alt="2.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476262688083.jpeg" style="margin: 0px; padding: 0px; list-style-type: none;" title="1599476262688083.jpeg" /></p>", "author": "基础部" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/moralplan/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/moralplan/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "e7205ef7f854405896de655d1ea14229", "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/termactivity/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": "schoolTerm", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "", "required": false, "example": "2020-2021", "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "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\": \"068c20315c454d6abf4679b9c9bf64f5\",\r\n \"createBy\": \"00421\",\r\n \"createTime\": \"2020-09-07 18:00:57\",\r\n \"updateBy\": \"00421\",\r\n \"updateTime\": \"2020-09-07 18:00:57\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"schoolYear\": \"2020-2021\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"title\": \"2020-2021第一学期活动安排\",//标题\r\n \"content\": \"<p>\\r\\n\\t<img alt="1.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476090704602.jpeg" style="margin: 0px; padding: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; text-align: center; white-space: normal; background-color: rgb(222, 236, 249);" title="1599476090704602.jpeg" /></p>\",\r\n \"author\": \"基础部\"//作者\r\n }\r\n ],\r\n \"total\": 1,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/termactivity": { "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": { "schoolYear": "2025-2026", "schoolTerm": "1", "title": "测试", "author": "测试作者", "content": "

22

", "createTime": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/termactivity/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": "e7205ef7f854405896de655d1ea14229", "remarks": "", "schoolYear": "2020-2021", "schoolTerm": "1", "title": "2020-2021学年德育工作计划", "content": "<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249); text-align: center;">\r\n\t<img alt="1.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476257140783.jpeg" style="margin: 0px; padding: 0px; list-style-type: none;" title="1599476257140783.jpeg" /></p>\r\n<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249);">\r\n\t&nbsp;</p>\r\n<p style="margin: 0px; padding: 0px; border: 0px; list-style-type: none; font-family: Verdana, Arial, 宋体, sans-serif; white-space: normal; background-color: rgb(222, 236, 249); text-align: center;">\r\n\t<img alt="2.JPEG" src="http://www.czjsy.com/web/common/js/kindeditor/attached/image/20200907/1599476262688083.jpeg" style="margin: 0px; padding: 0px; list-style-type: none;" title="1599476262688083.jpeg" /></p>", "author": "基础部" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/termactivity/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/termactivity/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "e7205ef7f854405896de655d1ea14229", "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/admin/dict/type/stu_care_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/stuwork/stucare/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "realName", "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": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"records\": [\r\n {\r\n \"id\": \"037c0dfeca6ff7dfaf475b5f3c4e90f6\",\r\n \"createBy\": \"00450\",\r\n \"createTime\": \"2023-01-02 21:40:35\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"041722182819\",\r\n \"careType\": \"2\",\r\n \"present\": \"钱雨杭,男,单亲家庭,和妈妈一起生活,之前是住宿生,本学期改了走读生,一人在学校附近住房子,周六周日也不回去。一人就在租的房子里。平时放学后就去肯德基打工。本学期很少和老师和学生交流,对于老师的沟通和教育常报以对抗情绪,稍有不顺,就在教室不顾课堂纪律大发光火。只要自己认准的事情,就认为是对的,不听任何人的劝告。\",//危机表现\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-12-23\",\r\n \"realName\": null,//学生姓名\r\n \"classCode\": null,//班级代码\r\n \"classNo\": null,//班号\r\n \"className\": null,//班级名称\r\n \"deptCode\": null,//学院代码\r\n \"deptName\": null,//学院名称\r\n \"teacherNo\": null,//班主任工号\r\n \"classMasterName\": null,//班主任姓名\r\n \"teacherRealName\": null,//班主任姓名\r\n \"teacherTel\": null//班主任号码\r\n },\r\n {\r\n \"id\": \"059ba0ab0dcfdedf591ae16655e82a94\",\r\n \"createBy\": \"00611\",\r\n \"createTime\": \"2021-12-16 10:28:53\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"141702213317\",\r\n \"careType\": \"9\",\r\n \"present\": \"割腕自残,后来考证初二就有第一次了\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-12-15\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"0dc1628b74eb41c0ccc41ae6b43231fb\",\r\n \"createBy\": \"00702\",\r\n \"createTime\": \"2022-12-26 21:11:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131202212303\",\r\n \"careType\": \"8\",\r\n \"present\": \"有抑郁症史,已与家长联系,建议治疗\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-23\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"0e2909691fc9660c34b51b7887981a03\",\r\n \"createBy\": \"00723\",\r\n \"createTime\": \"2022-11-09 14:40:12\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131711223451\",\r\n \"careType\": \"7\",\r\n \"present\": \"刷抖音到夜里3点,白天上课睡觉\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-09\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1109b2cbc95678744959ff39985bbeaa\",\r\n \"createBy\": \"00140\",\r\n \"createTime\": \"2021-11-25 08:54:12\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"121708210527\",\r\n \"careType\": \"9\",\r\n \"present\": \"学校心理健康测试结果显示异常\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-11-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"11ffc1e642be63b728e448e3ae4d3d76\",\r\n \"createBy\": \"00611\",\r\n \"createTime\": \"2021-12-22 17:02:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"141702213308\",\r\n \"careType\": \"9\",\r\n \"present\": \"求关注\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-12-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"140fa3592322d6c22755bf12d20d90f1\",\r\n \"createBy\": \"00370\",\r\n \"createTime\": \"2022-12-02 19:20:43\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"111704202037\",\r\n \"careType\": \"4\",\r\n \"present\": \"经常迟到,作业不做,考试不及格\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1c88ad5a17c03c57ff38bd8e844df71a\",\r\n \"createBy\": \"00723\",\r\n \"createTime\": \"2022-11-09 14:39:33\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131711223444\",\r\n \"careType\": \"9\",\r\n \"present\": \"熬夜情况严重\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-01\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1f01425ef71cacaf4d5ef4e2532d4f12\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-12 13:40:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254803\",\r\n \"careType\": \"5\",\r\n \"present\": \"1111\",\r\n \"result\": null,\r\n \"recordDate\": \"2026-01-12\",\r\n \"realName\": \"聂嘉妤\",\r\n \"classCode\": \"1512072548\",\r\n \"classNo\": \"2548\",\r\n \"className\": \"交通运输2548\",\r\n \"deptCode\": \"15\",\r\n \"deptName\": \"交通运输学院\",\r\n \"teacherNo\": \"00823\",\r\n \"classMasterName\": \"周熔\",\r\n \"teacherRealName\": \"周熔\",\r\n \"teacherTel\": \"18896656256\"\r\n },\r\n {\r\n \"id\": \"202901cd5a5d1b10a13299fb8d7718b9\",\r\n \"createBy\": \"00140\",\r\n \"createTime\": \"2021-10-08 10:55:22\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"121708210536\",\r\n \"careType\": \"1\",\r\n \"present\": \"该生在别人对其讲话时总是心不在焉,貌似很认真的听,其实一句都没听进去,问他时一句话都不会说,几乎不讲话,通常面无表情,和家长已沟通。\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-10-08\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n }\r\n ],\r\n \"total\": 82,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 9\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stucare": { "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 \"classCode\": \"1512072548\",//班级代码\r\n \"stuNo\": \"151207254803\",//学号\r\n \"careType\": \"5\",//需关爱类型\r\n \"present\": \"1111\",//危机表现\r\n \"recordDate\": \"2026-01-12 \",//记录时间\r\n \"result\": \"\",\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stucare/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": "037c0dfeca6ff7dfaf475b5f3c4e90f6", "schoolYear": "2022-2023", "schoolTerm": "1", "stuNo": "041722182819", "careType": "2", "present": "钱雨杭,男,单亲家庭,和妈妈一起生活,之前是住宿生,本学期改了走读生,一人在学校附近住房子,周六周日也不回去。一人就在租的房子里。平时放学后就去肯德基打工。本学期很少和老师和学生交流,对于老师的沟通和教育常报以对抗情绪,稍有不顺,就在教室不顾课堂纪律大发光火。只要自己认准的事情,就认为是对的,不听任何人的劝告。", "result": "", "recordDate": "2022-12-23", "realName": null, "classCode": null, "classNo": null, "className": null, "deptCode": null, "deptName": null, "teacherNo": null, "classMasterName": null, "teacherRealName": null, "teacherTel": null } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stucare/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/stucare/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "2374867363c4cab3e8be828d1db7413b", "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/classhonor/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "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\": \"037c0dfeca6ff7dfaf475b5f3c4e90f6\",\r\n \"createBy\": \"00450\",\r\n \"createTime\": \"2023-01-02 21:40:35\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"041722182819\",\r\n \"careType\": \"2\",\r\n \"present\": \"钱雨杭,男,单亲家庭,和妈妈一起生活,之前是住宿生,本学期改了走读生,一人在学校附近住房子,周六周日也不回去。一人就在租的房子里。平时放学后就去肯德基打工。本学期很少和老师和学生交流,对于老师的沟通和教育常报以对抗情绪,稍有不顺,就在教室不顾课堂纪律大发光火。只要自己认准的事情,就认为是对的,不听任何人的劝告。\",//危机表现\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-12-23\",\r\n \"realName\": null,//学生姓名\r\n \"classCode\": null,//班级代码\r\n \"classNo\": null,//班号\r\n \"className\": null,//班级名称\r\n \"deptCode\": null,//学院代码\r\n \"deptName\": null,//学院名称\r\n \"teacherNo\": null,//班主任工号\r\n \"classMasterName\": null,//班主任姓名\r\n \"teacherRealName\": null,//班主任姓名\r\n \"teacherTel\": null//班主任号码\r\n },\r\n {\r\n \"id\": \"059ba0ab0dcfdedf591ae16655e82a94\",\r\n \"createBy\": \"00611\",\r\n \"createTime\": \"2021-12-16 10:28:53\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"141702213317\",\r\n \"careType\": \"9\",\r\n \"present\": \"割腕自残,后来考证初二就有第一次了\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-12-15\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"0dc1628b74eb41c0ccc41ae6b43231fb\",\r\n \"createBy\": \"00702\",\r\n \"createTime\": \"2022-12-26 21:11:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131202212303\",\r\n \"careType\": \"8\",\r\n \"present\": \"有抑郁症史,已与家长联系,建议治疗\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-23\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"0e2909691fc9660c34b51b7887981a03\",\r\n \"createBy\": \"00723\",\r\n \"createTime\": \"2022-11-09 14:40:12\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131711223451\",\r\n \"careType\": \"7\",\r\n \"present\": \"刷抖音到夜里3点,白天上课睡觉\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-09\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1109b2cbc95678744959ff39985bbeaa\",\r\n \"createBy\": \"00140\",\r\n \"createTime\": \"2021-11-25 08:54:12\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"121708210527\",\r\n \"careType\": \"9\",\r\n \"present\": \"学校心理健康测试结果显示异常\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-11-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"11ffc1e642be63b728e448e3ae4d3d76\",\r\n \"createBy\": \"00611\",\r\n \"createTime\": \"2021-12-22 17:02:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"141702213308\",\r\n \"careType\": \"9\",\r\n \"present\": \"求关注\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-12-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"140fa3592322d6c22755bf12d20d90f1\",\r\n \"createBy\": \"00370\",\r\n \"createTime\": \"2022-12-02 19:20:43\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"111704202037\",\r\n \"careType\": \"4\",\r\n \"present\": \"经常迟到,作业不做,考试不及格\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1c88ad5a17c03c57ff38bd8e844df71a\",\r\n \"createBy\": \"00723\",\r\n \"createTime\": \"2022-11-09 14:39:33\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131711223444\",\r\n \"careType\": \"9\",\r\n \"present\": \"熬夜情况严重\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-01\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1f01425ef71cacaf4d5ef4e2532d4f12\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-12 13:40:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254803\",\r\n \"careType\": \"5\",\r\n \"present\": \"1111\",\r\n \"result\": null,\r\n \"recordDate\": \"2026-01-12\",\r\n \"realName\": \"聂嘉妤\",\r\n \"classCode\": \"1512072548\",\r\n \"classNo\": \"2548\",\r\n \"className\": \"交通运输2548\",\r\n \"deptCode\": \"15\",\r\n \"deptName\": \"交通运输学院\",\r\n \"teacherNo\": \"00823\",\r\n \"classMasterName\": \"周熔\",\r\n \"teacherRealName\": \"周熔\",\r\n \"teacherTel\": \"18896656256\"\r\n },\r\n {\r\n \"id\": \"202901cd5a5d1b10a13299fb8d7718b9\",\r\n \"createBy\": \"00140\",\r\n \"createTime\": \"2021-10-08 10:55:22\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"121708210536\",\r\n \"careType\": \"1\",\r\n \"present\": \"该生在别人对其讲话时总是心不在焉,貌似很认真的听,其实一句都没听进去,问他时一句话都不会说,几乎不讲话,通常面无表情,和家长已沟通。\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-10-08\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n }\r\n ],\r\n \"total\": 82,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 9\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhonor": { "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 \"classCode\": \"1123012224\", //班级代码\r\n \"schoolYear\": \"2025-2026\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"title\": \"“喜迎二十大”黑板报一等奖\", //标题\r\n \"author\": \"徐楷然,陈鑫,龚益雄\", //作者\r\n \"belong\": \"\", //归档级别\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_honor/7622434589.jpg\" //附件\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhonor/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\": \"132a8f06ef6dbbb15ff2222de9e57977\",\r\n \"createBy\": \"00550\",\r\n \"createTime\": \"2023-01-08 23:05:46\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1123012224\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"title\": \"“喜迎二十大”黑板报一等奖\", //标题\r\n \"author\": \"徐楷然,陈鑫,龚益雄\", //作者\r\n \"belong\": \"\", //归档级别\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_honor/7622434589.jpg\", //附件\r\n \"classNo\": null, //班号\r\n \"className\": null, //班级名称\r\n \"deptCode\": null, //学院代码\r\n \"deptName\": null //学院名称\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classhonor/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/classhonor/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "2374867363c4cab3e8be828d1db7413b", "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/classpublicity/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/classpublicity/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "2374867363c4cab3e8be828d1db7413b", "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/classpublicity/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "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\": \"037c0dfeca6ff7dfaf475b5f3c4e90f6\",\r\n \"createBy\": \"00450\",\r\n \"createTime\": \"2023-01-02 21:40:35\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"041722182819\",\r\n \"careType\": \"2\",\r\n \"present\": \"钱雨杭,男,单亲家庭,和妈妈一起生活,之前是住宿生,本学期改了走读生,一人在学校附近住房子,周六周日也不回去。一人就在租的房子里。平时放学后就去肯德基打工。本学期很少和老师和学生交流,对于老师的沟通和教育常报以对抗情绪,稍有不顺,就在教室不顾课堂纪律大发光火。只要自己认准的事情,就认为是对的,不听任何人的劝告。\",//危机表现\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-12-23\",\r\n \"realName\": null,//学生姓名\r\n \"classCode\": null,//班级代码\r\n \"classNo\": null,//班号\r\n \"className\": null,//班级名称\r\n \"deptCode\": null,//学院代码\r\n \"deptName\": null,//学院名称\r\n \"teacherNo\": null,//班主任工号\r\n \"classMasterName\": null,//班主任姓名\r\n \"teacherRealName\": null,//班主任姓名\r\n \"teacherTel\": null//班主任号码\r\n },\r\n {\r\n \"id\": \"059ba0ab0dcfdedf591ae16655e82a94\",\r\n \"createBy\": \"00611\",\r\n \"createTime\": \"2021-12-16 10:28:53\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"141702213317\",\r\n \"careType\": \"9\",\r\n \"present\": \"割腕自残,后来考证初二就有第一次了\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-12-15\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"0dc1628b74eb41c0ccc41ae6b43231fb\",\r\n \"createBy\": \"00702\",\r\n \"createTime\": \"2022-12-26 21:11:04\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131202212303\",\r\n \"careType\": \"8\",\r\n \"present\": \"有抑郁症史,已与家长联系,建议治疗\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-23\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"0e2909691fc9660c34b51b7887981a03\",\r\n \"createBy\": \"00723\",\r\n \"createTime\": \"2022-11-09 14:40:12\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131711223451\",\r\n \"careType\": \"7\",\r\n \"present\": \"刷抖音到夜里3点,白天上课睡觉\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-09\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1109b2cbc95678744959ff39985bbeaa\",\r\n \"createBy\": \"00140\",\r\n \"createTime\": \"2021-11-25 08:54:12\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"121708210527\",\r\n \"careType\": \"9\",\r\n \"present\": \"学校心理健康测试结果显示异常\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-11-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"11ffc1e642be63b728e448e3ae4d3d76\",\r\n \"createBy\": \"00611\",\r\n \"createTime\": \"2021-12-22 17:02:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"141702213308\",\r\n \"careType\": \"9\",\r\n \"present\": \"求关注\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-12-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"140fa3592322d6c22755bf12d20d90f1\",\r\n \"createBy\": \"00370\",\r\n \"createTime\": \"2022-12-02 19:20:43\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"111704202037\",\r\n \"careType\": \"4\",\r\n \"present\": \"经常迟到,作业不做,考试不及格\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-22\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1c88ad5a17c03c57ff38bd8e844df71a\",\r\n \"createBy\": \"00723\",\r\n \"createTime\": \"2022-11-09 14:39:33\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"131711223444\",\r\n \"careType\": \"9\",\r\n \"present\": \"熬夜情况严重\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2022-11-01\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n },\r\n {\r\n \"id\": \"1f01425ef71cacaf4d5ef4e2532d4f12\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-12 13:40:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254803\",\r\n \"careType\": \"5\",\r\n \"present\": \"1111\",\r\n \"result\": null,\r\n \"recordDate\": \"2026-01-12\",\r\n \"realName\": \"聂嘉妤\",\r\n \"classCode\": \"1512072548\",\r\n \"classNo\": \"2548\",\r\n \"className\": \"交通运输2548\",\r\n \"deptCode\": \"15\",\r\n \"deptName\": \"交通运输学院\",\r\n \"teacherNo\": \"00823\",\r\n \"classMasterName\": \"周熔\",\r\n \"teacherRealName\": \"周熔\",\r\n \"teacherTel\": \"18896656256\"\r\n },\r\n {\r\n \"id\": \"202901cd5a5d1b10a13299fb8d7718b9\",\r\n \"createBy\": \"00140\",\r\n \"createTime\": \"2021-10-08 10:55:22\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"121708210536\",\r\n \"careType\": \"1\",\r\n \"present\": \"该生在别人对其讲话时总是心不在焉,貌似很认真的听,其实一句都没听进去,问他时一句话都不会说,几乎不讲话,通常面无表情,和家长已沟通。\",\r\n \"result\": \"\",\r\n \"recordDate\": \"2021-10-08\",\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"teacherNo\": null,\r\n \"classMasterName\": null,\r\n \"teacherRealName\": null,\r\n \"teacherTel\": null\r\n }\r\n ],\r\n \"total\": 82,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 9\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classpublicity": { "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\": \"1512062547\",//班级代码\r\n \"title\": \"测试\",//标题\r\n \"author\": \"测试作者\",//作者\r\n \"website\": \"https://baidu.com\",//网址\r\n \"createTime\": \"\",\r\n \"belong\": \"\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classpublicity/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\":\"b48a837caade40840615ac90ca208f54\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"classCode\": \"1512062547\",//班级代码\r\n \"title\": \"测试\",//标题\r\n \"author\": \"测试作者\",//作者\r\n \"website\": \"https://baidu.com\",//网址\r\n \"createTime\": \"\",\r\n \"belong\": \"\"\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/class_fee_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/classfeelog/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/classfeelog/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/classfeelog/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "careType", "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 \"moneyTotal\": 357247.28,//班费结余\r\n \"classFeeLogVOList\": [\r\n {\r\n \"id\": \"5b35ce4918fe4d867bc2706a667c6550\",\r\n \"createBy\": \"00585\",\r\n \"createTime\": \"2023-06-18 10:59:53\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1412082237\",//班级代码\r\n \"schoolYear\": \"2022-2023\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"operatTime\": \"2023-01-11 00:00:00\",//发生时间\r\n \"type\": \"1\",//类型1收入2支出\r\n \"money\": 366.47,//金额\r\n \"operator\": \"马菁\",//经办人\r\n \"purpose\": \"学期剩余\",//用途\r\n \"attachment\": \"\",//附件\r\n \"classNo\": null,//班号\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"8ad4f2d01d5fb9931e09da7d8dadae9e\",\r\n \"createBy\": \"00585\",\r\n \"createTime\": \"2023-06-18 10:58:39\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1412082237\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2023-01-12 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 366.47,\r\n \"operator\": \"马菁\",\r\n \"purpose\": \"学期剩余\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"95e96c71a07e170fb5e781081c35e419\",\r\n \"createBy\": \"00585\",\r\n \"createTime\": \"2023-06-18 10:47:19\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1412082237\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2023-01-12 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 336.47,\r\n \"operator\": \"马菁\",\r\n \"purpose\": \"学期剩余\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"f93328752583a3429c3bafd3e295cbf7\",\r\n \"createBy\": \"00585\",\r\n \"createTime\": \"2023-06-18 10:43:55\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1412082237\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2023-01-13 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 336.47,\r\n \"operator\": \"马菁\",\r\n \"purpose\": \"学期剩余\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"dc901fbd551a41e4a7342abcfd43fe2d\",\r\n \"createBy\": \"00585\",\r\n \"createTime\": \"2023-06-18 10:42:27\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1412082237\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2023-01-17 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 336.47,\r\n \"operator\": \"马菁\",\r\n \"purpose\": \"学期剩余\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"1ab327c4b11b62e02c40dc256b81d617\",\r\n \"createBy\": \"00569\",\r\n \"createTime\": \"2023-06-15 09:02:14\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1315102228\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2022-11-02 00:00:00\",\r\n \"type\": \"2\",\r\n \"money\": 30.00,\r\n \"operator\": \"金香\",\r\n \"purpose\": \"篮球比赛买水\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"d9385d75c25ec936c2126048effe0e66\",\r\n \"createBy\": \"00567\",\r\n \"createTime\": \"2023-06-14 14:09:11\",\r\n \"updateBy\": \"00567\",\r\n \"updateTime\": \"2023-06-14 14:09:26\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1522042050\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2022-11-07 00:00:00\",\r\n \"type\": \"2\",\r\n \"money\": 677.00,\r\n \"operator\": \"芮宇泽\",\r\n \"purpose\": \"班级活动(野外烧烤)\",\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-classFeeLog/5904663076.jpg\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"9c8501387007f58f8fe32aa0cfba0c0e\",\r\n \"createBy\": \"00552\",\r\n \"createTime\": \"2023-06-13 20:30:56\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1317042030\",\r\n \"schoolYear\": \"2023-2024\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2023-06-13 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 786.10,\r\n \"operator\": \"周小凤\",\r\n \"purpose\": \"2022-2023学年第二学期班费结余\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"310cbd9b5c6ff6d2e8e7d2a9e2b2aa6d\",\r\n \"createBy\": \"00239\",\r\n \"createTime\": \"2023-06-12 16:30:25\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1217052008\",\r\n \"schoolYear\": \"2021-2022\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2021-11-27 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 497.72,\r\n \"operator\": \"朱骥\",\r\n \"purpose\": \"上学期班费结余\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n },\r\n {\r\n \"id\": \"5b3729b51dd0f1da190f68d48222b856\",\r\n \"createBy\": \"00171\",\r\n \"createTime\": \"2023-06-07 09:21:16\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1212081914\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"operatTime\": \"2023-02-23 00:00:00\",\r\n \"type\": \"1\",\r\n \"money\": 0.00,\r\n \"operator\": \"罗开勇\",\r\n \"purpose\": \"上学期结余0\",\r\n \"attachment\": \"\",\r\n \"classNo\": null,\r\n \"className\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"classNos\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"total\": 8185,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 819\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classfeelog": { "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 \"classCode\": \"1412082237\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"operatTime\": \"2023-01-11 00:00:00\", //发生时间\r\n \"type\": \"1\", //类型1收入2支出\r\n \"money\": 366.47, //金额\r\n \"operator\": \"马菁\", //经办人\r\n \"purpose\": \"学期剩余\", //用途\r\n \"attachment\": \"\",\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classfeelog/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\": \"99f552f2b1ea3a9cc2201cb135fa3724\",\r\n \"classCode\": \"1412082237\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"operatTime\": \"2023-01-11 00:00:00\", //发生时间\r\n \"type\": \"1\", //类型1收入2支出\r\n \"money\": 366.47, //金额\r\n \"operator\": \"马菁\", //经办人\r\n \"purpose\": \"学期剩余\", //用途\r\n \"attachment\": \"\",\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/conduct_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" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuconduct/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/stuconduct/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/stuconduct/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "conductType", "in": "query", "description": "类型", "required": false, "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": { "code": 0, "msg": null, "data": { "records": [ { "id": "0c89af7f7cc5f99feca8c983bc5971cb", "createBy": "admin", "createTime": "2026-01-08 11:14:13", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "stuNo": "152304235510", "score": 1, "conductType": "0", "description": "扣分1分,宿舍打闹", "attachment": null, "sourceCode": "91adce1061565a3ca45f090d23e07838", "recordDate": "2025-12-29", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "b6c19c0a32c8705924e92bee1f551276", "createBy": "admin", "createTime": "2025-11-20 11:23:26", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "stuNo": "152304235503", "score": 1, "conductType": "0", "description": "吵闹", "attachment": null, "sourceCode": "8f571892385fc880d73766a4fb82498c", "recordDate": "2025-11-20", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "4de94a77ce07be37c79fcbd9ceac0313", "createBy": "admin", "createTime": "2025-11-17 16:40:10", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "stuNo": "152304235510", "score": 1, "conductType": "0", "description": "扣分1分,宿舍打闹", "attachment": null, "sourceCode": "4305452886bba6feefcb102248669d58", "recordDate": "2025-11-18", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "39ce268ba0836241637676f8d9cd4ce1", "createBy": "admin", "createTime": "2025-11-17 16:16:08", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2025-2026", "schoolTerm": "1", "stuNo": "152304235505", "score": 2, "conductType": "0", "description": "测试2222", "attachment": null, "sourceCode": "0b3bd57410d534ac671c72d28ea94568", "recordDate": "2025-11-18", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "64af7bc33b3cac0fd16950a1a67bf229", "createBy": "admin", "createTime": "2024-06-07 16:03:35", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2023-2024", "schoolTerm": "1", "stuNo": "152304235504", "score": 10, "conductType": "1", "description": "补充", "attachment": "", "sourceCode": null, "recordDate": "2024-06-07", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "a5b044644e69f7089f666fb279e5d037", "createBy": "admin", "createTime": "2024-06-07 16:02:51", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2022-2023", "schoolTerm": "1", "stuNo": "152304235501", "score": 10, "conductType": "1", "description": "2222", "attachment": "", "sourceCode": null, "recordDate": "2024-06-07", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "c9e4d354b59ad56bc22d999be761a8d4", "createBy": "00528", "createTime": "2022-12-29 21:24:40", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2022-2023", "schoolTerm": "1", "stuNo": "131202202735", "score": 10, "conductType": "1", "description": "上课认真听讲,认真打扫卫生,认真完成作业", "attachment": "", "sourceCode": null, "recordDate": "2023-01-13", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "5ff4066a270b4473b12916773d5c1457", "createBy": "00528", "createTime": "2022-12-29 21:08:15", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2022-2023", "schoolTerm": "1", "stuNo": "131202202714", "score": 10, "conductType": "1", "description": "上课认真听讲,认真打扫卫生,认真完成作业", "attachment": "", "sourceCode": null, "recordDate": "2023-01-13", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "4db2030496a0759b5b355250fae8a8af", "createBy": "00528", "createTime": "2022-12-29 21:07:44", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2022-2023", "schoolTerm": "1", "stuNo": "131202202713", "score": 10, "conductType": "1", "description": "上课认真听讲,认真打扫卫生,认真完成作业", "attachment": "", "sourceCode": null, "recordDate": "2023-01-13", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null }, { "id": "2247d81b9213de2ed9f4b2d782eab13a", "createBy": "00528", "createTime": "2022-12-29 20:57:20", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": null, "schoolYear": "2022-2023", "schoolTerm": "1", "stuNo": "131202202701", "score": 6, "conductType": "1", "description": "上课认真听讲,认真打扫卫生", "attachment": "", "sourceCode": null, "recordDate": "2023-01-13", "realName": null, "classCode": "", "classNo": null, "deptCode": null, "deptName": null } ], "total": 255623, "size": 10, "current": 1, "pages": 25563 }, "ok": true } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuconduct": { "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\": \"1512072548\",//班级代码\r\n \"stuNo\": \"151207254803\",//学号\r\n \"score\": 1,//分数\r\n \"conductType\": \"0\",//类型\r\n \"recordDate\": \"2026-01-12\",//记录时间\r\n \"description\": \"打闹\",//情况记录\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-stu_conduct/4430120627.jpg\"//附件\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuconduct/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\":\"20ce928ffe9320748dfa4a04a64d072f\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"classCode\": \"1512072548\",//班级代码\r\n \"stuNo\": \"151207254803\",//学号\r\n \"score\": 1,//分数\r\n \"conductType\": \"0\",//类型\r\n \"recordDate\": \"2026-01-12\",//记录时间\r\n \"description\": \"打闹\",//情况记录\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-stu_conduct/4430120627.jpg\"//附件\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuconduct/getStuConductYear": { "get": { "summary": "页面", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "schoolYear", "in": "query", "description": "", "required": false, "example": [ "2025-2026" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "schoolTerm", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": true, "example": [ "1517042549" ], "schema": { "type": "array", "items": { "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\": 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 \"schoolYear\": null,\r\n \"schoolTerm\": null,\r\n \"stuNo\": null,\r\n \"score\": null,\r\n \"conductType\": null,\r\n \"description\": null,\r\n \"attachment\": null,\r\n \"sourceCode\": null,\r\n \"recordDate\": null,\r\n \"realName\": null,\r\n \"classCode\": null,\r\n \"classNo\": null,\r\n \"deptCode\": null,\r\n \"deptName\": null,\r\n \"oneMonth\": \"2025-09\",//一个月\r\n \"twoMonth\": \"2025-10\",//两个个月\r\n \"threeMonth\": \"2025-11\",//三个月\r\n \"fourMonth\": \"2025-12\",//四个月\r\n \"fiveMonth\": \"2026-01\",//五个月个月\r\n \"classStuNum\": 54,//人数\r\n \"excellentNum\": 0,//优秀人数\r\n \"goodNum\": 54,//良好人数\r\n \"passNum\": 0,//及格人数\r\n \"failNum\": 0,//不几个认识\r\n \"excellentRate\": \"0%\",//优秀率\r\n \"goodRate\": \"100%\",//良好率\r\n \"passRate\": \"0%\",//及格率\r\n \"failRate\": \"0%\",//不及格率\r\n \"excellentGoodRate\": \"100%\",//优良率\r\n \"basicStudentVOList\": [\r\n {\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"stuNo\": \"151207254801\",//学号\r\n \"realName\": \"高淑言\",//姓名\r\n \"scoreOneMonth\": 85,//一个月分数\r\n \"scoreTwoMonth\": 85,//两个月分数\r\n \"scoreThreeMonth\": 85,//三个月分数\r\n \"scoreFourMonth\": 85,//四个月分数\r\n \"scoreFiveMonth\": 85,//五个月分数\r\n \"scoreOneTerm\": 85,//学期总评分数\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254802\",\r\n \"realName\": \"李梓悦\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254803\",\r\n \"realName\": \"聂嘉妤\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 84.00,\r\n \"scoreOneTerm\": 84.80,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254804\",\r\n \"realName\": \"沈恬\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254805\",\r\n \"realName\": \"王沙\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254806\",\r\n \"realName\": \"许欣冉\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254807\",\r\n \"realName\": \"张思忆\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254808\",\r\n \"realName\": \"蔡世博\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254809\",\r\n \"realName\": \"陈士博\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254810\",\r\n \"realName\": \"陈志豪\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254811\",\r\n \"realName\": \"程吉昊\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254812\",\r\n \"realName\": \"储金泽\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254813\",\r\n \"realName\": \"丁杨\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254814\",\r\n \"realName\": \"傅恩帅\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254815\",\r\n \"realName\": \"花志远\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254816\",\r\n \"realName\": \"季新皓\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254817\",\r\n \"realName\": \"贾锦辉\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254818\",\r\n \"realName\": \"李传磊\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254819\",\r\n \"realName\": \"李明强\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254820\",\r\n \"realName\": \"李文凯\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254821\",\r\n \"realName\": \"李玉良\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254822\",\r\n \"realName\": \"李泽昊\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254823\",\r\n \"realName\": \"刘森泉\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254824\",\r\n \"realName\": \"刘旭尧\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254825\",\r\n \"realName\": \"毛博晨\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254826\",\r\n \"realName\": \"倪猛\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254827\",\r\n \"realName\": \"钱思澄\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254828\",\r\n \"realName\": \"苏一丞\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254829\",\r\n \"realName\": \"谭梦辰\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254830\",\r\n \"realName\": \"王寒\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254831\",\r\n \"realName\": \"王子康\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254832\",\r\n \"realName\": \"吴昊\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254833\",\r\n \"realName\": \"吴一鸣\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254834\",\r\n \"realName\": \"吴忠涵\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254835\",\r\n \"realName\": \"许贺\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254836\",\r\n \"realName\": \"严语晨\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254837\",\r\n \"realName\": \"杨益铭\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254838\",\r\n \"realName\": \"杨正宇\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254839\",\r\n \"realName\": \"杨志豪\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254840\",\r\n \"realName\": \"乙永涛\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254841\",\r\n \"realName\": \"殷煜坤\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254842\",\r\n \"realName\": \"张皓语\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254843\",\r\n \"realName\": \"张磊\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254844\",\r\n \"realName\": \"张林虎\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254845\",\r\n \"realName\": \"张文海\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254846\",\r\n \"realName\": \"章子俊\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254847\",\r\n \"realName\": \"钟浩宇\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254848\",\r\n \"realName\": \"周皓瑜\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254849\",\r\n \"realName\": \"沈莉娜\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254850\",\r\n \"realName\": \"高兴旭\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254851\",\r\n \"realName\": \"陈家豪\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254852\",\r\n \"realName\": \"朱梓鹏\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254853\",\r\n \"realName\": \"曹子浩\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n },\r\n {\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"stuNo\": \"151207254854\",\r\n \"realName\": \"汤文杰\",\r\n \"scoreOneMonth\": 85,\r\n \"scoreTwoMonth\": 85,\r\n \"scoreThreeMonth\": 85,\r\n \"scoreFourMonth\": 85,\r\n \"scoreFiveMonth\": 85,\r\n \"scoreOneTerm\": 85,\r\n \"scoreSixMonth\": null,\r\n \"scoreSevenMonth\": null,\r\n \"scoreEightMonth\": null,\r\n \"scoreNineMonth\": null,\r\n \"scoreTenMonth\": null,\r\n \"scoreTwoTerm\": null,\r\n \"scoreYear\": null\r\n }\r\n ]\r\n }\r\n ],\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuconduct/getStuConductTerm": { "get": { "summary": "页面", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "schoolYear", "in": "query", "description": "", "required": false, "example": "2021-2022", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": true, "example": "1512072548", "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": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": [\n {\n \"id\": null,\n \"createBy\": null,\n \"createTime\": null,\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": null,\n \"tenantId\": null,\n \"remarks\": null,\n \"schoolYear\": null,\n \"schoolTerm\": null,\n \"stuNo\": null,\n \"score\": null,\n \"conductType\": null,\n \"description\": null,\n \"attachment\": null,\n \"sourceCode\": null,\n \"recordDate\": null,\n \"realName\": null,\n \"classCode\": null,\n \"classNo\": null,\n \"deptCode\": null,\n \"deptName\": null,\n \"oneMonth\": \"2025-09\",//一个月\n \"twoMonth\": \"2025-10\",//两个个月\n \"threeMonth\": \"2025-11\",//三个月\n \"fourMonth\": \"2025-12\",//四个月\n \"fiveMonth\": \"2026-01\",//五个月\n \"sixMonth\": \"2026-02\",//6个月\n \"sevenMonth\": \"2026-03\",//7个月\n \"eightMonth\": \"2026-04\",//8个月\n \"nineMonth\": \"2026-05\",//8个月\n \"tenMonth\": \"2026-06\",//10个月\n \"classStuNum\": 54,//人数\n \"excellentNum\": 0,//优秀人数\n \"goodNum\": 54,//良好人数\n \"passNum\": 0,//及格人数\n \"failNum\": 0,//不几个认识\n \"excellentRate\": \"0%\",//优秀率\n \"goodRate\": \"100%\",//良好率\n \"passRate\": \"0%\",//及格率\n \"failRate\": \"0%\",//不及格率\n \"excellentGoodRate\": \"100%\",//优良率\n \"basicStudentVOList\": [\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151203254615\",\n \"realName\": \"仇森\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,//第一学期总评\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,//第二学期总评\n \"scoreYear\": 85//学年总评\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254902\",\n \"realName\": \"张雨\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254903\",\n \"realName\": \"陈永河\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254904\",\n \"realName\": \"陈予扬\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254905\",\n \"realName\": \"范子航\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254906\",\n \"realName\": \"冯懂\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254907\",\n \"realName\": \"付佳浩\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254908\",\n \"realName\": \"高凯枫\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254909\",\n \"realName\": \"顾君柯\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254910\",\n \"realName\": \"何昊阳\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254911\",\n \"realName\": \"华雨泽\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254912\",\n \"realName\": \"江海昊\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254913\",\n \"realName\": \"孔斌\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254914\",\n \"realName\": \"李翎\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254915\",\n \"realName\": \"李腾宇\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254916\",\n \"realName\": \"李文博\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254917\",\n \"realName\": \"李志侠\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254918\",\n \"realName\": \"李治龙\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254919\",\n \"realName\": \"李子轩\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254920\",\n \"realName\": \"刘家豪\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254921\",\n \"realName\": \"马震亚\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254922\",\n \"realName\": \"潘博文\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254923\",\n \"realName\": \"戚文旭\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254924\",\n \"realName\": \"佘东建\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254925\",\n \"realName\": \"沈康\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254926\",\n \"realName\": \"时东旭\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254927\",\n \"realName\": \"万晧轩\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254928\",\n \"realName\": \"王浩轩\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254929\",\n \"realName\": \"王鑫诚\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254930\",\n \"realName\": \"王宇鑫\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254931\",\n \"realName\": \"王臻彬\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254932\",\n \"realName\": \"王子豪\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254933\",\n \"realName\": \"吴明清\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254934\",\n \"realName\": \"吴天乐\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254935\",\n \"realName\": \"邢家伟\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254936\",\n \"realName\": \"徐家奎\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254937\",\n \"realName\": \"许嘉琪\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254938\",\n \"realName\": \"杨鼎诣\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254939\",\n \"realName\": \"杨航\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254940\",\n \"realName\": \"杨昊天\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254941\",\n \"realName\": \"夷骏程\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254942\",\n \"realName\": \"袁志勇\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254943\",\n \"realName\": \"翟鑫磊\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254944\",\n \"realName\": \"张豪宇\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254945\",\n \"realName\": \"张敬豪\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254946\",\n \"realName\": \"郑文博\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254947\",\n \"realName\": \"郑岳霖\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254948\",\n \"realName\": \"仲一凡\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254949\",\n \"realName\": \"周朗朗\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254950\",\n \"realName\": \"周凌川\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254951\",\n \"realName\": \"朱飞飞\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254952\",\n \"realName\": \"朱皓瑞\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254953\",\n \"realName\": \"朱恒毅\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254954\",\n \"realName\": \"朱振鹏\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"151704254955\",\n \"realName\": \"王文轩\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n },\n {\n \"schoolYear\": \"2025-2026\",\n \"schoolTerm\": null,\n \"stuNo\": \"161203243418\",\n \"realName\": \"季孙璨\",\n \"scoreOneMonth\": 85,\n \"scoreTwoMonth\": 85,\n \"scoreThreeMonth\": 85,\n \"scoreFourMonth\": 85,\n \"scoreFiveMonth\": 85,\n \"scoreOneTerm\": 85,\n \"scoreSixMonth\": 85,\n \"scoreSevenMonth\": 85,\n \"scoreEightMonth\": 85,\n \"scoreNineMonth\": 85,\n \"scoreTenMonth\": 85,\n \"scoreTwoTerm\": 85,\n \"scoreYear\": 85\n }\n ]\n }\n ],\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classsafeedu/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/classsafeedu/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/classsafeedu/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "recordDate", "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\": \"91bd6b883f3c1f7977d98479ca68e8ce\",\n \"createBy\": \"00159\",\n \"createTime\": \"2022-12-28 21:08:24\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512032140\",//班级代码\n \"schoolYear\": \"2022-2023\",//学年\n \"schoolTerm\": \"1\",//学期\n \"themeName\": \"饮食安全\",//活动主题\n \"author\": \"李江\",//主持人\n \"address\": \"班级qq\",//活动地点\n \"recordDate\": \"2023-01-06\",//活动时间\n \"attendNum\": \"46\",//参与人数\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\",//活动图片\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\",//内容\n \"attachment2\": \"\",//活动图片2\n \"classNo\": null//班号\n },\n {\n \"id\": \"d59eab3516f254f57c2d10a0f0e19a84\",\n \"createBy\": \"00624\",\n \"createTime\": \"2022-12-26 12:22:25\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0212131802\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"抗疫安全\",\n \"author\": \"朱镇京\",\n \"address\": \"微信群\",\n \"recordDate\": \"2023-01-04\",\n \"attendNum\": \"29\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/2557431534.jpg\",\n \"content\": \"

1. 发热病人等居家隔离者应尽量单间居住,保持相对隔离;


2. 为防止潜伏期出现交叉感染,建议健康家庭成员之间同样保持一米以上距离,并戴口罩,少面对面近距离说话,有条件者建议单间居住;


3. 丢弃使用过的口罩时,不要接触口罩外侧,应用手指捏住口罩的系带,将其丢至医疗废物容器内;摘掉口罩后应立即洗手;


4. 提倡公筷、分餐,家人碗筷单独专用,饭后用开水煮沸15-30分钟进行消毒;


5. 处理熟食和生食的菜板及刀具要分开,处理生食和熟食之后要洗手;


6. 房间勤通风,每天通风2-3次,每次20-30分钟以上;


7. 每天家中地面及桌椅板凳、门把手、马桶均用84消毒液按1:100浓度湿抹、湿拖,30分钟后再用清水湿抹、湿拖一次,每天二次,使用84消毒液时注意通风、戴口罩手套;


8. 普通衣物、床单、浴巾、毛巾等可以60-90℃的热水和普通家用洗衣液清洗,清洗后完全干燥;


9. 对疑似和确诊病例所有的床单、衣服及用品均要用84消毒液按1:100浓度浸泡30分钟后再用清水清洗,患者生活污水、排泄物最好用2:100浓度84消毒液浸泡或喷洒30分钟以上再倒掉或冲掉;


10. 杜绝亲朋好友探访;


11. 不出门少出门。必要的外出回家后,可以用浓度为75%的酒精对带回物品的外表面进行消毒,手机和钥匙也需要消毒,并用纸巾擦拭干净;用流动水和肥皂或洗手液洗手,洗手后尽可能使用一次性纸巾擦手;


12. 家庭内各房间均应使用单独的带盖垃圾桶,扔垃圾后应密封垃圾袋并消毒;


13. 对疑似或确诊病例的接触者,从最后一次接触病例次日算起,应自行隔离14天,把防护措施做好,才能避免家中互相传染;


14. 规律作息,定时运动,放松心情,提高免疫力。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"62817b049885d2626ca47e3085bdf914\",\n \"createBy\": \"00291\",\n \"createTime\": \"2022-12-30 11:11:33\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0412231822\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"阳了后怎么办\",\n \"author\": \"朱振华\",\n \"address\": \"班级群\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"25\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5705409828.jpg\",\n \"content\": \"

如果发现自己“阳了”怎么办呢?我们就需要知道这些关键点。

1、学会识别症状、观察症状

新冠肺炎患者大多会出现以下几种症状:发热、咽痛、咳嗽、鼻塞、流鼻涕是常见的症状。

但有极少部分者可以没有发热,咳嗽,咳痰,胸闷气促呼吸困难的症状。极少部分患者表现为消化道的症状,会出现恶心呕吐、腹痛、腹胀的表现。如果去过疫区或者14天之内和诊断的新型肺炎的患者有密切接触史,就应该及时到医院发热门诊进行检查。

2、克服恐惧心理

全面放开之后,接下来的几个月可能会出现一个爆发的高潮阶段,但是大家不用太担心,如今即便是感染了,也完全没有开始的时候那么严重。而且我们现在有了疫苗和药物的双重保护,即便自己阳性了,也一定不要慌张,心态一定要积极,相信自己一定会好的。从心理上增强自身的抵抗力,轻松转阴。乐观的心态是很重要的。

3、及时看医生

如果不幸“阳”了,症状严重的话,建议还是尽快去看医生。尤其是老人和孩子以及免疫力低下的人群。如果出现胸痛、呼吸困难、言语或者四肢出现活动障碍一定要及时去医院治疗。学生在服用药物时,最好是要经过医生诊断过的,且必须按照医嘱服药,生活上一定要保证小朋友要多喝水、饮食清淡。

4、常备防疫物资

家里一定要准备一些防疫物资,以备不时之需。首先就是口罩等医用品,疫情高发期,口罩是出入各类公共场所的必备品,所以最好在家里囤一点。其次就是常备药品,家里要有点常备药,比如感冒药、抗病毒、退烧药、镇痛药、创可贴之类的。最后建议储备一些矿泉水了。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"cb4ccf157188de08d5be41579bdc3f6f\",\n \"createBy\": \"00351\",\n \"createTime\": \"2022-12-30 00:41:57\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0312141812\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"顶岗实习安全教育4\",\n \"author\": \"刘晨\",\n \"address\": \"QQ群\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"34\",\n \"attachment\": \"\",\n \"content\": \"

强调在当前疫情的情况下,在注意安全防护的同时顾及自己的身体健康,不要带病上班,如果感染了新冠病毒必须自行隔离修养,在生病痊愈后方可继续进入定岗实习岗位。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"dff1ae589a79c5f56620b5ebb1872529\",\n \"createBy\": \"00285\",\n \"createTime\": \"2023-01-03 10:58:02\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1132022223\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"假期安全教育\",\n \"author\": \"朱文彬\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"19\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5265841864.jpg\",\n \"content\": \"

本学期即将结束,大家马上就要进入寒假,在寒假期间大家要注意安全防护。

1、交通安全

2、用电安全

3、增强防火意识

4、燃放烟花爆竹

最后,祝大家过一个开心快乐祥和的寒假。

\",\n \"attachment2\": \"/stuwork/minio/show?fileName=base-class_activity/4093541817.jpg\",\n \"classNo\": null\n },\n {\n \"id\": \"5acbd8d515a69cb53127b7798318ee0d\",\n \"createBy\": \"00587\",\n \"createTime\": \"2022-12-30 14:05:54\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0217011706\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"假期安全教育\",\n \"author\": \"刘帆\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"29\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/0139526948.jpg\",\n \"content\": \"

假期安全教育

线上教学工作已经全面结束,寒假即将到来,在这里进行安全教育。

1、通过学习让学生知道寒假中哪些安全事项及预防

2、让学生度过一个快乐平安的春节

3、提高学生的安全意识。

\\t一、科学防范,确保健康

    因寒假时间较长,又恰逢春节,请您做好自己以及孩子健康的第一责任人,时时关注身体状况,若出现发热、干咳、乏力、咽痛等相关症状,可在家观察治疗,对症用药,必要时请及时到医疗机构就诊。

    尽量减少外出,若确需外出,坚持佩戴医用防护口罩,勤洗手,避免用未清洁的手触摸口、眼、鼻。

    同时保持环境卫生,每天对生活区域进行卫生清洁消毒,坚持开窗通风。保持充足的睡眠和阳光的心态,注意科学饮食,营养均衡。

\\t跟岗、顶岗的同学,严格遵守学院和企业疫情防控要求,要自觉佩戴口罩,尽量减少外出,减少聚集,合理饮食,科学防控疫情。

\\t二、安全教育,不可忽视

  请家长们牢固树立“生命至上”、“安全第一”的意识,教育孩子遵守交通法规,注意行路安全、骑车安全,牢记“马路似虎口、安全每一步”,防止交通意外事故的发生。

   提醒孩子注意居家安全,特别是单独在家的时候,务必严格规范天然气等易燃易爆危险品和火、电的使用,防止天然气爆炸和火灾等事故发生。过年期间,严禁孩子私自燃放烟花爆竹,加强防范意识。

\\t三、网络安全教育

\\t提高安全防范意识,严防网络电信诈骗,注意子女的资金使用情况,微信、支付宝消费情况;严禁买卖电信卡、银行卡,严禁将电话卡、身份证借给他人使用;严禁参与网络刷单,防止网络诈骗、电话诈骗、短信诈骗、金融诈骗。发现疑似情况及时与其班主任联系。

\\t四、合理安排假期时间

\\t1.重视劳动习惯的养成,支持引导孩子参与生产劳动和家务劳动。勤俭节约、移风易俗,养成良好的卫生行为习惯,加强自身品德修养,做文明学生、文明公民。

\\t2.居家锻炼。体育锻炼不能落下,每天都要有固定的运动时间,父母和孩子一起进行居家锻炼,增强孩子的体质。

\\t五、心理健康教育

\\t持续关注心理健康,营造温馨和谐的家庭氛围。帮助孩子汲取正能量,塑造积极向上的成长型思维。及时传递权威消息,缓解孩子的焦虑情绪。利用假期和孩子多交流、多谈心,沟通思想。关注孩子心理状态的变化,加强家校联系,如有异常及时与班主任沟通。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"5b48e36950e2580c0e1d1e05514017d0\",\n \"createBy\": \"00136\",\n \"createTime\": \"2022-12-29 19:39:01\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1112042215\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"网络安全教育\",\n \"author\": \"申如意\",\n \"address\": \"网络\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"40\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/0593834689.jpg\",\n \"content\": \"

1、不信谣不传谣

2、疫情当下,不能乱听信谣言

3、不要在网络乱购物

4、不去乱接陌生电话

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"e786720f9ab126a5232864da561c58c0\",\n \"createBy\": \"00605\",\n \"createTime\": \"2022-12-30 12:49:05\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1012021854\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"安全教育\",\n \"author\": \"彭庆英\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"34\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5650413881.jpg\",\n \"content\": \"

这次主题班会对这个学期班级出现的情况进行总结,对每天自觉打卡签到的同学进行表扬和鼓励,对有几个要催好几次才打卡的同学进行了点名,要他们向自觉的同学学习。

还是强调安全问题,比如这次有的同学阳了还带病上班,要他们多注意休息,等身体好了再去上班。对于还没有阳的同学,要做好自身防护。所以,在疫情时期,每个同学都要注意自己的身体健康,把身体保护好。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"12bb5ee8711301fcb3fcc15cad6a45b7\",\n \"createBy\": \"00444\",\n \"createTime\": \"2022-12-27 18:35:37\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1212082002\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"寒假安全教育\",\n \"author\": \"魏小兵\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-27\",\n \"attendNum\": \"44\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/4708171526.jpg\",\n \"content\": \"

【活动目的】

1、切实加强冬季,尤其是春节期间安全教育,增强学生安全防范意识。

2、向学生进行防冻、防火、防盗、防骗、防交通事故等安全防范教育,增强学生的自我保护和安全防范意识,防止学生遭受人身和财产损失。

【活动形式】

师讲述,生理解议论

【活动过程】:

为了同学们的身心健康与生命安全,为了大家过一个愉快而又充实的寒假。彻底杜绝元旦假期期间学生一切非正常事故的发生,请大家遵守以下规定:

一、外出活动及交通安全

1、不到水库、机井、塘坝、水窖、河道沙坑等地方滑冰。恶劣天气不在危险建筑物、大树下避雨雪、不玩火、学会防火、防电、防煤气中毒等安全常识。

2、不到悬崖、陡坡、易塌方的沙、土坑等地方玩耍,不攀爬树木、高大建筑物等。

3、不在危险的地方玩耍,不做任何带有危险性的游戏,及时远离危险因素。

4、不打架斗殴,不搞恶作剧,不做有损自己和他人的事。

5、外出路上要遵守交通规则,不骑自行车上路,不乘坐无证车,不乘坐酒后驾驶的车辆,出行注意交通安全。

6、未经家长同意,一律不准私自、探亲、访友,离家时一定要与父母打招呼。

7、遵守社会公德,遵纪守法,不做任何损害老百姓利益、危及他人生命财产安全的事情。

二、饮食卫生安全

1、不饮用不卫生食物,不喝生水,不吃凉饭菜,元旦期间,保持良好的饮食习惯,不要暴食暴饮。

2、注意个人饮食卫生。

3、不食用三无食品。

三、用电用火用气等方面的安全

1、掌握安全用电常识,不随便触摸电器设备。不靠近有电电源,不随便动各种插头,不撕拉乱接电线。使用电器需由家长指导。

2、掌握正确使用液化气常识,不单独开液化气炉灶,预防煤气中毒。

3、不玩烟花爆竹等危险物品。不玩火、远离火源,注意消防安全。

四、社会公德方面

1、遵守社会公德,遵纪守法,不做任何损害老百姓利益、危及他人生命财产安全的事情。

2、崇尚科学,不参加任何封建迷信活动和邪教组织;严禁参与赌博与变相赌博,严禁听、看不健康的音像与书刊,严禁进电子游戏室、网吧、歌舞厅活动,看有益电视节目。

7、孝敬父母、团结邻里、关爱幼小,自己能做的事情自己做,帮助父母干力所能及的家务活。

五、假期作业方面

期末考试即将来临,希望大家在元旦假期里以复习功课为主,好好学习,认真复习功课,保质保量完成假期作业;

总结

以上诸条希望大家认真落实,请家长帮忙监督和加强自我管理、自我约束,各科作业做完后让家长签名。春节是我国的传统节日,只有保证人身和财产安全,才能过个安乐祥和的春节。寒假即将到来,春节在向我们招手,希望大家时时刻刻注意自身以及周围人群的安全,防止安全事故的发生。希望能通过这次活动进一步增强我们的安全意识和自我保护意识。让安全系着你、我、他,愿我们的生活每天都充满阳光和鲜花,愿我们每个人都能拥有一个平安快乐的寒假,愿平安和幸福永远着伴随我们大家!


\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"be27cf63dd55b9d43bb54f89b7cc9a3f\",\n \"createBy\": \"00705\",\n \"createTime\": \"2022-12-29 22:28:22\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1317042124\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"疫情防控安全教育\",\n \"author\": \"郭艺妹\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-27\",\n \"attendNum\": \"50\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/1242747539.jpg\",\n \"content\": \"

1.本学期线上课程今天全部结束,课程成绩可在app内查看,1月3日到7日学校安排线上讲座,届时请同学们准时观看,观看要求到时通知;

2.下学期2月7号报到,住宿生不能提前报到,8号正式上课;

3.请同学们假期注意防护,保重身体,做好自己健康的第一责任人。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n }\n ],\n \"total\": 7089,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 709\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classsafeedu": { "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 \"classCode\": \"1512032140\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"themeName\": \"饮食安全\", //活动主题\r\n \"author\": \"李江\", //主持人\r\n \"address\": \"班级qq\", //活动地点\r\n \"recordDate\": \"2023-01-06\", //活动时间\r\n \"attendNum\": \"46\", //参与人数\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\", //活动图片\r\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\", //内容\r\n \"attachment2\": \"\" //活动图片2\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classsafeedu/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\": \"91bd6b883f3c1f7977d98479ca68e8ce\",\r\n \"createBy\": \"00159\",\r\n \"createTime\": \"2022-12-28 21:08:24\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1512032140\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"themeName\": \"饮食安全\", //活动主题\r\n \"author\": \"李江\", //主持人\r\n \"address\": \"班级qq\", //活动地点\r\n \"recordDate\": \"2023-01-06\", //活动时间\r\n \"attendNum\": \"46\", //参与人数\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\", //活动图片\r\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\", //内容\r\n \"attachment2\": \"\", //活动图片2\r\n \"classNo\": null //班号\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classactivity/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/classactivity/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/classactivity/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "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\": \"91bd6b883f3c1f7977d98479ca68e8ce\",\n \"createBy\": \"00159\",\n \"createTime\": \"2022-12-28 21:08:24\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512032140\",//班级代码\n \"schoolYear\": \"2022-2023\",//学年\n \"schoolTerm\": \"1\",//学期\n \"themeName\": \"饮食安全\",//活动主题\n \"author\": \"李江\",//主持人\n \"address\": \"班级qq\",//活动地点\n \"recordDate\": \"2023-01-06\",//活动时间\n \"attendNum\": \"46\",//参与人数\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\",//活动图片\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\",//内容\n \"attachment2\": \"\",//活动图片2\n \"classNo\": null//班号\n },\n {\n \"id\": \"d59eab3516f254f57c2d10a0f0e19a84\",\n \"createBy\": \"00624\",\n \"createTime\": \"2022-12-26 12:22:25\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0212131802\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"抗疫安全\",\n \"author\": \"朱镇京\",\n \"address\": \"微信群\",\n \"recordDate\": \"2023-01-04\",\n \"attendNum\": \"29\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/2557431534.jpg\",\n \"content\": \"

1. 发热病人等居家隔离者应尽量单间居住,保持相对隔离;


2. 为防止潜伏期出现交叉感染,建议健康家庭成员之间同样保持一米以上距离,并戴口罩,少面对面近距离说话,有条件者建议单间居住;


3. 丢弃使用过的口罩时,不要接触口罩外侧,应用手指捏住口罩的系带,将其丢至医疗废物容器内;摘掉口罩后应立即洗手;


4. 提倡公筷、分餐,家人碗筷单独专用,饭后用开水煮沸15-30分钟进行消毒;


5. 处理熟食和生食的菜板及刀具要分开,处理生食和熟食之后要洗手;


6. 房间勤通风,每天通风2-3次,每次20-30分钟以上;


7. 每天家中地面及桌椅板凳、门把手、马桶均用84消毒液按1:100浓度湿抹、湿拖,30分钟后再用清水湿抹、湿拖一次,每天二次,使用84消毒液时注意通风、戴口罩手套;


8. 普通衣物、床单、浴巾、毛巾等可以60-90℃的热水和普通家用洗衣液清洗,清洗后完全干燥;


9. 对疑似和确诊病例所有的床单、衣服及用品均要用84消毒液按1:100浓度浸泡30分钟后再用清水清洗,患者生活污水、排泄物最好用2:100浓度84消毒液浸泡或喷洒30分钟以上再倒掉或冲掉;


10. 杜绝亲朋好友探访;


11. 不出门少出门。必要的外出回家后,可以用浓度为75%的酒精对带回物品的外表面进行消毒,手机和钥匙也需要消毒,并用纸巾擦拭干净;用流动水和肥皂或洗手液洗手,洗手后尽可能使用一次性纸巾擦手;


12. 家庭内各房间均应使用单独的带盖垃圾桶,扔垃圾后应密封垃圾袋并消毒;


13. 对疑似或确诊病例的接触者,从最后一次接触病例次日算起,应自行隔离14天,把防护措施做好,才能避免家中互相传染;


14. 规律作息,定时运动,放松心情,提高免疫力。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"62817b049885d2626ca47e3085bdf914\",\n \"createBy\": \"00291\",\n \"createTime\": \"2022-12-30 11:11:33\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0412231822\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"阳了后怎么办\",\n \"author\": \"朱振华\",\n \"address\": \"班级群\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"25\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5705409828.jpg\",\n \"content\": \"

如果发现自己“阳了”怎么办呢?我们就需要知道这些关键点。

1、学会识别症状、观察症状

新冠肺炎患者大多会出现以下几种症状:发热、咽痛、咳嗽、鼻塞、流鼻涕是常见的症状。

但有极少部分者可以没有发热,咳嗽,咳痰,胸闷气促呼吸困难的症状。极少部分患者表现为消化道的症状,会出现恶心呕吐、腹痛、腹胀的表现。如果去过疫区或者14天之内和诊断的新型肺炎的患者有密切接触史,就应该及时到医院发热门诊进行检查。

2、克服恐惧心理

全面放开之后,接下来的几个月可能会出现一个爆发的高潮阶段,但是大家不用太担心,如今即便是感染了,也完全没有开始的时候那么严重。而且我们现在有了疫苗和药物的双重保护,即便自己阳性了,也一定不要慌张,心态一定要积极,相信自己一定会好的。从心理上增强自身的抵抗力,轻松转阴。乐观的心态是很重要的。

3、及时看医生

如果不幸“阳”了,症状严重的话,建议还是尽快去看医生。尤其是老人和孩子以及免疫力低下的人群。如果出现胸痛、呼吸困难、言语或者四肢出现活动障碍一定要及时去医院治疗。学生在服用药物时,最好是要经过医生诊断过的,且必须按照医嘱服药,生活上一定要保证小朋友要多喝水、饮食清淡。

4、常备防疫物资

家里一定要准备一些防疫物资,以备不时之需。首先就是口罩等医用品,疫情高发期,口罩是出入各类公共场所的必备品,所以最好在家里囤一点。其次就是常备药品,家里要有点常备药,比如感冒药、抗病毒、退烧药、镇痛药、创可贴之类的。最后建议储备一些矿泉水了。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"cb4ccf157188de08d5be41579bdc3f6f\",\n \"createBy\": \"00351\",\n \"createTime\": \"2022-12-30 00:41:57\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0312141812\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"顶岗实习安全教育4\",\n \"author\": \"刘晨\",\n \"address\": \"QQ群\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"34\",\n \"attachment\": \"\",\n \"content\": \"

强调在当前疫情的情况下,在注意安全防护的同时顾及自己的身体健康,不要带病上班,如果感染了新冠病毒必须自行隔离修养,在生病痊愈后方可继续进入定岗实习岗位。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"dff1ae589a79c5f56620b5ebb1872529\",\n \"createBy\": \"00285\",\n \"createTime\": \"2023-01-03 10:58:02\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1132022223\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"假期安全教育\",\n \"author\": \"朱文彬\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"19\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5265841864.jpg\",\n \"content\": \"

本学期即将结束,大家马上就要进入寒假,在寒假期间大家要注意安全防护。

1、交通安全

2、用电安全

3、增强防火意识

4、燃放烟花爆竹

最后,祝大家过一个开心快乐祥和的寒假。

\",\n \"attachment2\": \"/stuwork/minio/show?fileName=base-class_activity/4093541817.jpg\",\n \"classNo\": null\n },\n {\n \"id\": \"5acbd8d515a69cb53127b7798318ee0d\",\n \"createBy\": \"00587\",\n \"createTime\": \"2022-12-30 14:05:54\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0217011706\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"假期安全教育\",\n \"author\": \"刘帆\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"29\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/0139526948.jpg\",\n \"content\": \"

假期安全教育

线上教学工作已经全面结束,寒假即将到来,在这里进行安全教育。

1、通过学习让学生知道寒假中哪些安全事项及预防

2、让学生度过一个快乐平安的春节

3、提高学生的安全意识。

\\t一、科学防范,确保健康

    因寒假时间较长,又恰逢春节,请您做好自己以及孩子健康的第一责任人,时时关注身体状况,若出现发热、干咳、乏力、咽痛等相关症状,可在家观察治疗,对症用药,必要时请及时到医疗机构就诊。

    尽量减少外出,若确需外出,坚持佩戴医用防护口罩,勤洗手,避免用未清洁的手触摸口、眼、鼻。

    同时保持环境卫生,每天对生活区域进行卫生清洁消毒,坚持开窗通风。保持充足的睡眠和阳光的心态,注意科学饮食,营养均衡。

\\t跟岗、顶岗的同学,严格遵守学院和企业疫情防控要求,要自觉佩戴口罩,尽量减少外出,减少聚集,合理饮食,科学防控疫情。

\\t二、安全教育,不可忽视

  请家长们牢固树立“生命至上”、“安全第一”的意识,教育孩子遵守交通法规,注意行路安全、骑车安全,牢记“马路似虎口、安全每一步”,防止交通意外事故的发生。

   提醒孩子注意居家安全,特别是单独在家的时候,务必严格规范天然气等易燃易爆危险品和火、电的使用,防止天然气爆炸和火灾等事故发生。过年期间,严禁孩子私自燃放烟花爆竹,加强防范意识。

\\t三、网络安全教育

\\t提高安全防范意识,严防网络电信诈骗,注意子女的资金使用情况,微信、支付宝消费情况;严禁买卖电信卡、银行卡,严禁将电话卡、身份证借给他人使用;严禁参与网络刷单,防止网络诈骗、电话诈骗、短信诈骗、金融诈骗。发现疑似情况及时与其班主任联系。

\\t四、合理安排假期时间

\\t1.重视劳动习惯的养成,支持引导孩子参与生产劳动和家务劳动。勤俭节约、移风易俗,养成良好的卫生行为习惯,加强自身品德修养,做文明学生、文明公民。

\\t2.居家锻炼。体育锻炼不能落下,每天都要有固定的运动时间,父母和孩子一起进行居家锻炼,增强孩子的体质。

\\t五、心理健康教育

\\t持续关注心理健康,营造温馨和谐的家庭氛围。帮助孩子汲取正能量,塑造积极向上的成长型思维。及时传递权威消息,缓解孩子的焦虑情绪。利用假期和孩子多交流、多谈心,沟通思想。关注孩子心理状态的变化,加强家校联系,如有异常及时与班主任沟通。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"5b48e36950e2580c0e1d1e05514017d0\",\n \"createBy\": \"00136\",\n \"createTime\": \"2022-12-29 19:39:01\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1112042215\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"网络安全教育\",\n \"author\": \"申如意\",\n \"address\": \"网络\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"40\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/0593834689.jpg\",\n \"content\": \"

1、不信谣不传谣

2、疫情当下,不能乱听信谣言

3、不要在网络乱购物

4、不去乱接陌生电话

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"e786720f9ab126a5232864da561c58c0\",\n \"createBy\": \"00605\",\n \"createTime\": \"2022-12-30 12:49:05\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1012021854\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"安全教育\",\n \"author\": \"彭庆英\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"34\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5650413881.jpg\",\n \"content\": \"

这次主题班会对这个学期班级出现的情况进行总结,对每天自觉打卡签到的同学进行表扬和鼓励,对有几个要催好几次才打卡的同学进行了点名,要他们向自觉的同学学习。

还是强调安全问题,比如这次有的同学阳了还带病上班,要他们多注意休息,等身体好了再去上班。对于还没有阳的同学,要做好自身防护。所以,在疫情时期,每个同学都要注意自己的身体健康,把身体保护好。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"12bb5ee8711301fcb3fcc15cad6a45b7\",\n \"createBy\": \"00444\",\n \"createTime\": \"2022-12-27 18:35:37\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1212082002\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"寒假安全教育\",\n \"author\": \"魏小兵\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-27\",\n \"attendNum\": \"44\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/4708171526.jpg\",\n \"content\": \"

【活动目的】

1、切实加强冬季,尤其是春节期间安全教育,增强学生安全防范意识。

2、向学生进行防冻、防火、防盗、防骗、防交通事故等安全防范教育,增强学生的自我保护和安全防范意识,防止学生遭受人身和财产损失。

【活动形式】

师讲述,生理解议论

【活动过程】:

为了同学们的身心健康与生命安全,为了大家过一个愉快而又充实的寒假。彻底杜绝元旦假期期间学生一切非正常事故的发生,请大家遵守以下规定:

一、外出活动及交通安全

1、不到水库、机井、塘坝、水窖、河道沙坑等地方滑冰。恶劣天气不在危险建筑物、大树下避雨雪、不玩火、学会防火、防电、防煤气中毒等安全常识。

2、不到悬崖、陡坡、易塌方的沙、土坑等地方玩耍,不攀爬树木、高大建筑物等。

3、不在危险的地方玩耍,不做任何带有危险性的游戏,及时远离危险因素。

4、不打架斗殴,不搞恶作剧,不做有损自己和他人的事。

5、外出路上要遵守交通规则,不骑自行车上路,不乘坐无证车,不乘坐酒后驾驶的车辆,出行注意交通安全。

6、未经家长同意,一律不准私自、探亲、访友,离家时一定要与父母打招呼。

7、遵守社会公德,遵纪守法,不做任何损害老百姓利益、危及他人生命财产安全的事情。

二、饮食卫生安全

1、不饮用不卫生食物,不喝生水,不吃凉饭菜,元旦期间,保持良好的饮食习惯,不要暴食暴饮。

2、注意个人饮食卫生。

3、不食用三无食品。

三、用电用火用气等方面的安全

1、掌握安全用电常识,不随便触摸电器设备。不靠近有电电源,不随便动各种插头,不撕拉乱接电线。使用电器需由家长指导。

2、掌握正确使用液化气常识,不单独开液化气炉灶,预防煤气中毒。

3、不玩烟花爆竹等危险物品。不玩火、远离火源,注意消防安全。

四、社会公德方面

1、遵守社会公德,遵纪守法,不做任何损害老百姓利益、危及他人生命财产安全的事情。

2、崇尚科学,不参加任何封建迷信活动和邪教组织;严禁参与赌博与变相赌博,严禁听、看不健康的音像与书刊,严禁进电子游戏室、网吧、歌舞厅活动,看有益电视节目。

7、孝敬父母、团结邻里、关爱幼小,自己能做的事情自己做,帮助父母干力所能及的家务活。

五、假期作业方面

期末考试即将来临,希望大家在元旦假期里以复习功课为主,好好学习,认真复习功课,保质保量完成假期作业;

总结

以上诸条希望大家认真落实,请家长帮忙监督和加强自我管理、自我约束,各科作业做完后让家长签名。春节是我国的传统节日,只有保证人身和财产安全,才能过个安乐祥和的春节。寒假即将到来,春节在向我们招手,希望大家时时刻刻注意自身以及周围人群的安全,防止安全事故的发生。希望能通过这次活动进一步增强我们的安全意识和自我保护意识。让安全系着你、我、他,愿我们的生活每天都充满阳光和鲜花,愿我们每个人都能拥有一个平安快乐的寒假,愿平安和幸福永远着伴随我们大家!


\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"be27cf63dd55b9d43bb54f89b7cc9a3f\",\n \"createBy\": \"00705\",\n \"createTime\": \"2022-12-29 22:28:22\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1317042124\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"疫情防控安全教育\",\n \"author\": \"郭艺妹\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-27\",\n \"attendNum\": \"50\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/1242747539.jpg\",\n \"content\": \"

1.本学期线上课程今天全部结束,课程成绩可在app内查看,1月3日到7日学校安排线上讲座,届时请同学们准时观看,观看要求到时通知;

2.下学期2月7号报到,住宿生不能提前报到,8号正式上课;

3.请同学们假期注意防护,保重身体,做好自己健康的第一责任人。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n }\n ],\n \"total\": 7089,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 709\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classactivity": { "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 \"classCode\": \"1512032140\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"themeName\": \"饮食安全\", //活动主题\r\n \"author\": \"李江\", //主持人\r\n \"address\": \"班级qq\", //活动地点\r\n \"recordDate\": \"2023-01-06\", //活动时间\r\n \"attendNum\": \"46\", //参与人数\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\", //活动图片\r\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\", //内容\r\n \"attachment2\": \"\" //活动图片2\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/classactivity/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\": \"48b74d5269f2984f12af725efa5996e6\",\r\n \"createBy\": \"00159\",\r\n \"createTime\": \"2022-12-28 21:08:24\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"classCode\": \"1512032140\", //班级代码\r\n \"schoolYear\": \"2022-2023\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"themeName\": \"饮食安全\", //活动主题\r\n \"author\": \"李江\", //主持人\r\n \"address\": \"班级qq\", //活动地点\r\n \"recordDate\": \"2023-01-06\", //活动时间\r\n \"attendNum\": \"46\", //参与人数\r\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\", //活动图片\r\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\", //内容\r\n \"attachment2\": \"\", //活动图片2\r\n \"classNo\": null //班号\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardrule/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": { "code": { "type": "integer" }, "msg": { "type": "null" }, "data": { "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" }, "ruleName": { "type": "string" }, "ruleType": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "ruleName", "ruleType" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardclass/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/rewardclass/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/rewardclass/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "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\": \"1e1b3a3a82bb40848de4e9cbe04492fe\",\n \"createBy\": \"00421\",\n \"createTime\": \"2020-05-25 19:41:59\",\n \"updateBy\": \"00421\",\n \"updateTime\": \"2020-05-25 19:41:59\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"classCode\": \"1315081923\",//班级代码\n \"ruleId\": \"36\",//奖项id\n \"ruleName\": \"优秀团支部\",//奖项名称\n \"schoolYear\": \"2019-2020\",//学年\n \"schoolTerm\": \"1\",//学期\n \"classNo\": null,//班号\n \"deptCode\": null,//学院代码\n \"deptName\": null,//学院\n \"teacherNo\": null,//班主任员工号\n \"classMasterName\": null//班主任姓名\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardclass": { "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 \"classCode\": \"1512072548\",//班级代码\r\n \"ruleId\": \"30\",//奖项id\r\n \"remarks\": \"222\",//备注\r\n \"ruleName\": \"二等奖\"//奖项\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardclass/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": "be6808f5f662ced0d509994d16ac1310", "createBy": "admin", "createTime": "2026-01-12 16:26:59", "updateBy": null, "updateTime": null, "delFlag": "0", "tenantId": null, "remarks": "222", "classCode": "1512072548", "ruleId": "30", "ruleName": "二等奖", "schoolYear": "2025-2026", "schoolTerm": "1", "classNo": "2548", "deptCode": "15", "deptName": "交通运输学院", "teacherNo": "00823", "classMasterName": "周熔" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewarddorm/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/rewarddorm/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/rewarddorm/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": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roomNo", "in": "query", "description": "宿舍号", "required": false, "example": "6405", "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\": \"04fa073d154f4686938eb0a0ead09f74\",\n \"createBy\": \"00421\",\n \"createTime\": \"2020-05-21 16:08:46\",\n \"updateBy\": \"00421\",\n \"updateTime\": \"2020-05-21 16:08:46\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"roomNo\": \"6405\",//宿舍号\n \"ruleName\": \"文明宿舍\",//奖项名称\n \"schoolYear\": \"2019-2020\",//学年\n \"schoolTerm\": \"1\"//学期\n }\n ],\n \"total\": 1,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewarddorm": { "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 \"roomNo\": \"6405\", //宿舍号\r\n \"ruleId\": \"35\", //奖项id\r\n \"ruleName\": \"文明宿舍\", //奖项名称\r\n \"schoolYear\": \"2024-2025\", //学年\r\n \"schoolTerm\": \"1\" //学期\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewarddorm/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\": \"04fa073d154f4686938eb0a0ead09f74\",\r\n \"createBy\": \"00421\",\r\n \"createTime\": \"2020-05-21 16:08:46\",\r\n \"updateBy\": \"00421\",\r\n \"updateTime\": \"2020-05-21 16:08:46\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"roomNo\": \"6405\", //宿舍号\r\n \"ruleId\": \"35\", //奖项id\r\n \"ruleName\": \"文明宿舍\", //奖项名称\r\n \"schoolYear\": \"2019-2020\", //学年\r\n \"schoolTerm\": \"1\" //学期\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardrule/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/rewardrule/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/rewardrule/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": "ruleType", "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": { "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\": \"21\",\n \"createBy\": \"thinkgem\",\n \"createTime\": \"2017-09-29 08:26:30\",\n \"updateBy\": \"thinkgem\",\n \"updateTime\": \"2017-09-29 08:26:30\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"优秀团员\",//奖项名称\n \"ruleType\": \"2\"//奖项类型\n },\n {\n \"id\": \"28\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 16:27:04\",\n \"updateBy\": \"00250\",\n \"updateTime\": \"2017-10-09 16:27:04\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"优秀团干部(班级)\",\n \"ruleType\": \"2\"\n },\n {\n \"id\": \"29\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 16:38:15\",\n \"updateBy\": \"00250\",\n \"updateTime\": \"2017-10-09 16:38:15\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"优秀学生干部(班级)\",\n \"ruleType\": \"2\"\n },\n {\n \"id\": \"30\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 16:40:43\",\n \"updateBy\": \"admin\",\n \"updateTime\": \"2021-04-01 23:14:21\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"二等奖\",\n \"ruleType\": \"2\"\n },\n {\n \"id\": \"31\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 16:40:59\",\n \"updateBy\": \"admin\",\n \"updateTime\": \"2021-04-01 23:14:26\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"一等奖\",\n \"ruleType\": \"2\"\n },\n {\n \"id\": \"32\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 16:41:12\",\n \"updateBy\": \"admin\",\n \"updateTime\": \"2021-04-01 23:14:13\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"特等奖\",\n \"ruleType\": \"2\"\n },\n {\n \"id\": \"33\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 16:42:11\",\n \"updateBy\": \"00250\",\n \"updateTime\": \"2017-10-09 16:42:11\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"院三好学生\",\n \"ruleType\": \"2\"\n },\n {\n \"id\": \"34\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 18:51:32\",\n \"updateBy\": \"00250\",\n \"updateTime\": \"2017-10-09 18:51:32\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"文明班级\",\n \"ruleType\": \"1\"\n },\n {\n \"id\": \"35\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-09 18:51:48\",\n \"updateBy\": \"00250\",\n \"updateTime\": \"2017-10-09 18:51:48\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"文明宿舍\",\n \"ruleType\": \"1\"\n },\n {\n \"id\": \"36\",\n \"createBy\": \"00250\",\n \"createTime\": \"2017-10-30 15:14:50\",\n \"updateBy\": \"00250\",\n \"updateTime\": \"2017-10-30 15:14:50\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"ruleName\": \"优秀团支部\",\n \"ruleType\": \"1\"\n }\n ],\n \"total\": 12,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 2\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardrule": { "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 \"ruleName\": \"测试\", //奖项名称\r\n \"ruleType\": \"2\" //奖项类型\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/rewardrule/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\": \"21\",\r\n \"createBy\": \"thinkgem\",\r\n \"createTime\": \"2017-09-29 08:26:30\",\r\n \"updateBy\": \"thinkgem\",\r\n \"updateTime\": \"2017-09-29 08:26:30\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"\",\r\n \"ruleName\": \"优秀团员\", //奖项名称\r\n \"ruleType\": \"2\" //奖项类型\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/rule_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" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string" }, "updateTime": { "type": "string" }, "delFlag": { "type": "string" }, "tenantId": { "type": "integer" }, "remarks": { "type": "string" }, "ruleName": { "type": "string" }, "ruleType": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "ruleName", "ruleType" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/assessment_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/stuwork/assessmentcategory/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/assessmentcategory/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/assessmentcategory/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": "type", "in": "query", "description": "考核类型", "required": false, "example": "0", "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\": \"1\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"出勤\",//考核项名称\n \"type\": \"0\"//考核类型\n },\n {\n \"id\": \"2\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"数据资料\",\n \"type\": \"0\"\n },\n {\n \"id\": \"3\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"学生常规\",\n \"type\": \"0\"\n },\n {\n \"id\": \"4\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"宿舍管理\",\n \"type\": \"0\"\n },\n {\n \"id\": \"5\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"学籍工作\",\n \"type\": \"0\"\n },\n {\n \"id\": \"6\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"学生教育\",\n \"type\": \"0\"\n },\n {\n \"id\": \"7\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"团学工作\",\n \"type\": \"0\"\n },\n {\n \"id\": \"71dfe82ad4cb4153824d756ec650ee42\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": \"00421\",\n \"updateTime\": \"2019-10-15 11:09:44\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"category\": \"德育研究\",\n \"type\": \"0\"\n },\n {\n \"id\": \"8\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": null,\n \"category\": \"班级荣誉\",\n \"type\": \"0\"\n },\n {\n \"id\": \"801a0e3cabe841419e37fa854bc8c96b\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:28:53\",\n \"updateBy\": \"00362\",\n \"updateTime\": \"2019-04-19 07:31:55\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"category\": \"学风检查\",\n \"type\": \"0\"\n }\n ],\n \"total\": 12,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 2\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentcategory": { "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 \"category\": \"测试\", //考核项名称\r\n \"type\": \"0\" //考核类型\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentcategory/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\": \"1\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-13 22:28:53\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": null,\r\n \"category\": \"出勤\", //考核项名称\r\n \"type\": \"0\" //考核类型\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentpoint/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/assessmentpoint/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "99f552f2b1ea3a9cc2201cb135fa3724", "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/assessmentpoint/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": "pointName", "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\": \"9\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-12 21:57:59\",\n \"updateBy\": \"00421\",\n \"updateTime\": \"2019-10-17 19:08:51\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"扣分前判断当前的总考勤率是否达到15%,只有达到该指定比例,才实行扣分\",//备注\n \"categortyId\": \"1\",//考核项id\n \"pointName\": \"一日二报\",//指标名称\n \"standard\": \"每日9:30分、20:30分 对未考勤的班级进行扣分;扣分分值默认为1分\",//评分标准\n \"score\": 0\n },\n {\n \"id\": \"7\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:29:07\",\n \"updateBy\": \"00367A\",\n \"updateTime\": \"2019-12-21 06:02:00\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"categortyId\": \"2\",\n \"pointName\": \"统一安排的工作\",\n \"standard\": \"未及时准确上交首次扣5分、未按时完成统一安排的工作扣1-3分\",\n \"score\": 0\n }\n ],\n \"total\": 2,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentpoint": { "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 \"remarks\": \"扣分前判断当前的总考勤率是否达到15%,只有达到该指定比例,才实行扣分\", //备注\r\n \"categortyId\": \"1\", //考核项id\r\n \"pointName\": \"一日二报\", //指标名称\r\n \"standard\": \"每日9:30分、20:30分 对未考勤的班级进行扣分;扣分分值默认为1分\", //评分标准\r\n \"score\": 0\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentpoint/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\": \"9\",\r\n \"createBy\": \"1\",\r\n \"createTime\": \"2021-03-12 21:57:59\",\r\n \"updateBy\": \"00421\",\r\n \"updateTime\": \"2019-10-17 19:08:51\",\r\n \"delFlag\": \"0\",\r\n \"tenantId\": 1,\r\n \"remarks\": \"扣分前判断当前的总考勤率是否达到15%,只有达到该指定比例,才实行扣分\", //备注\r\n \"categortyId\": \"1\", //考核项id\r\n \"pointName\": \"一日二报\", //指标名称\r\n \"standard\": \"每日9:30分、20:30分 对未考勤的班级进行扣分;扣分分值默认为1分\", //评分标准\r\n \"score\": 0\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/ems/emsopenschooltime/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 \"classNo\": \"1517042549\",//班级代码\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"\",\r\n \"openYear\": \"2026\",//开学年\r\n \"openMonth\": \"01\",//开学月\r\n \"openDate\": \"15\",//开学日\r\n \"openHour\": \"00\"//开学时\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/ems/emsqualityreport/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": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"9\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-12 21:57:59\",\n \"updateBy\": \"00421\",\n \"updateTime\": \"2019-10-17 19:08:51\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"扣分前判断当前的总考勤率是否达到15%,只有达到该指定比例,才实行扣分\",//备注\n \"categortyId\": \"1\",//考核项id\n \"pointName\": \"一日二报\",//指标名称\n \"standard\": \"每日9:30分、20:30分 对未考勤的班级进行扣分;扣分分值默认为1分\",//评分标准\n \"score\": 0\n },\n {\n \"id\": \"7\",\n \"createBy\": \"1\",\n \"createTime\": \"2021-03-13 22:29:07\",\n \"updateBy\": \"00367A\",\n \"updateTime\": \"2019-12-21 06:02:00\",\n \"delFlag\": \"0\",\n \"tenantId\": 1,\n \"remarks\": \"\",\n \"categortyId\": \"2\",\n \"pointName\": \"统一安排的工作\",\n \"standard\": \"未及时准确上交首次扣5分、未按时完成统一安排的工作扣1-3分\",\n \"score\": 0\n }\n ],\n \"total\": 2,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/ems/emsqualityreport/updatePY": { "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": { "stuNo": "151203254615", "comment": "222", "parentalMsg": "333", "schoolYear": "2025-2026", "schoolTerm": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/pendingwork/getPendingWork": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "deptCode", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuworkstudyalternate/page": { "get": { "summary": "列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "current", "in": "query", "description": "", "required": false, "example": "0", "schema": { "type": "string" } }, { "name": "size", "in": "query", "description": "", "required": false, "example": "10", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "", "required": false, "example": [ "" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "schoolTerm", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "学院代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classNo", "in": "query", "description": "班号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "stuNo", "in": "query", "description": "学号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "dateRangeStr", "in": "query", "description": "2022-01-13,2022-02-20时间范围", "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": { "total": { "type": "integer" }, "tableData": { "type": "object", "properties": { "records": { "type": "array", "items": { "type": "string" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" }, "pages": { "type": "integer" } }, "required": [ "records", "total", "size", "current", "pages" ] } }, "required": [ "total", "tableData" ] }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": {\r\n \"total\": 0,\r\n \"tableData\": {\r\n \"records\": [\r\n {\r\n \"id\": \"1671098cede3e0c5d7786da350ccf510\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205235\",//学号\r\n \"realName\": \"张熙\",//姓名\r\n \"classCode\": \"1223012052\",//班级代码\r\n \"className\": \"智能制造2052\",//班级姓名\r\n \"classNo\": \"2052\",//班号\r\n \"classProName\": \"20智能制造技术[四](高)\",//班级规范名称\r\n \"schoolYear\": \"2022-2023\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"startTime\": \"2022-11-14 00:00:00\",//开始时间\r\n \"endTime\": \"2022-12-09 23:59:59\",//结束时间\r\n \"auditStatus\": \"1\",//审核状态0未通过1已通过\r\n \"deptAudit\": \"1\",//基础部审核\r\n \"schoolAudit\": \"1\",//学工处审批\r\n \"cityAudit\": \"1\",//市局审核\")\r\n \"deptCode\": \"12\",//学院编码\r\n \"deptName\": \"智能制造学院\",//学院\r\n \"attendanceTeacherNo\": null,//带班教师工号\r\n \"attendanceTeacherName\": null//带班教师姓名\r\n },\r\n {\r\n \"id\": \"ffa3dfa1250ab8609a206f35136fc010\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205212\",\r\n \"realName\": \"林家东\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"2bcfb6411145c418a501e729bf4c8d28\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205233\",\r\n \"realName\": \"张文浩\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"28a824e3c13d8ba0ecb8d249f332a460\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205230\",\r\n \"realName\": \"姚思杰\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"136281e7f71849c3064211f4e3ece6bb\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205241\",\r\n \"realName\": \"李叶\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"202f6a6c31987cde025a5c3c484a2768\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205219\",\r\n \"realName\": \"宋华烨\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"1c75e5ea47b825a47c21f0ad9b069700\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205242\",\r\n \"realName\": \"石霄\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"15c329c2442f464bbc611374ffc3daca\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"122301205218\",\r\n \"realName\": \"马露\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2022-12-09 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"0cf63fe1064af111d18bee237ecedd20\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": \"2024-04-17 15:49:27\",\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"121705210601\",\r\n \"realName\": \"戴楠\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2024-02-14 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n },\r\n {\r\n \"id\": \"03f22e7434437eacaf6d766e87ab3e4f\",\r\n \"createBy\": \"00309\",\r\n \"createTime\": \"2022-11-29 15:32:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": \"2024-04-17 15:45:02\",\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"stuNo\": \"121705210608\",\r\n \"realName\": \"周浩\",\r\n \"classCode\": \"1223012052\",\r\n \"className\": \"智能制造2052\",\r\n \"classNo\": \"2052\",\r\n \"classProName\": \"20智能制造技术[四](高)\",\r\n \"schoolYear\": \"2022-2023\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2022-11-14 00:00:00\",\r\n \"endTime\": \"2024-05-21 23:59:59\",\r\n \"auditStatus\": \"1\",\r\n \"deptAudit\": \"1\",\r\n \"schoolAudit\": \"1\",\r\n \"cityAudit\": \"1\",\r\n \"deptCode\": \"12\",\r\n \"deptName\": \"智能制造学院\",\r\n \"attendanceTeacherNo\": null,\r\n \"attendanceTeacherName\": null\r\n }\r\n ],\r\n \"total\": 395,\r\n \"size\": 10,\r\n \"current\": 0,\r\n \"pages\": 40\r\n }\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormroomstudent/queryStudentDataListByClass": { "get": { "summary": "学生列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": "1517042549", "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": "array", "items": { "type": "object", "properties": { "id": { "type": "null" }, "createBy": { "type": "null" }, "createTime": { "type": "null" }, "updateBy": { "type": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "null" }, "remarks": { "type": "null" }, "tenantId": { "type": "null" }, "stuNo": { "type": "string" }, "realName": { "type": "string" }, "gender": { "type": "null" }, "stuStatus": { "type": "null" }, "classCode": { "type": "null" }, "enrollStatus": { "type": "null" }, "qrCode": { "type": "null" }, "isGradu": { "type": "null" }, "isClassLeader": { "type": "null" }, "graduTime": { "type": "null" }, "isInout": { "type": "null" }, "classMasterName": { "type": "null" }, "classMasterCode": { "type": "null" }, "specialIn": { "type": "null" }, "socialInsurance": { "type": "null" }, "enrollNo": { "type": "null" }, "enrollMiddleNo": { "type": "null" }, "graduNo": { "type": "null" }, "faceExclude": { "type": "null" }, "faceExcludeReason": { "type": "null" }, "avatarAudit": { "type": "null" }, "idCard": { "type": "null" }, "phone": { "type": "null" }, "teacherNo": { "type": "null" }, "teacherRealName": { "type": "null" }, "education": { "type": "null" }, "majorName": { "type": "null" }, "majorCode": { "type": "null" }, "householdAddress": { "type": "null" }, "roomNo": { "type": "string", "nullable": true }, "classQQ": { "type": "null" }, "graduateNumber": { "type": "null" }, "oldName": { "type": "null" }, "className": { "type": "null" }, "deptCode": { "type": "null" }, "deptName": { "type": "null" }, "classStatus": { "type": "null" }, "majorLevel": { "type": "null" }, "stuNos": { "type": "null" }, "bankCard": { "type": "null" }, "gradeCurr": { "type": "null" }, "temporaryyeYear": { "type": "null" }, "majorYears": { "type": "null" }, "rewards": { "type": "null" }, "evaluation": { "type": "null" }, "appraisal": { "type": "null" }, "studentStatus": { "type": "null" }, "nationName": { "type": "null" }, "postalAddress": { "type": "null" }, "advantage": { "type": "null" }, "liveAddress": { "type": "null" }, "homeBirth": { "type": "null" }, "national": { "type": "null" }, "politicsStatus": { "type": "null" }, "classNo": { "type": "null" }, "stuNum": { "type": "null" }, "manStuNum": { "type": "null" }, "girlStuNum": { "type": "null" }, "borrowingStuNum": { "type": "null" }, "tel": { "type": "null" }, "birthday": { "type": "null" }, "initial": { "type": "null" }, "scoreOneMonth": { "type": "null" }, "scoreTwoMonth": { "type": "null" }, "scoreThreeMonth": { "type": "null" }, "scoreFourMonth": { "type": "null" }, "scoreFiveMonth": { "type": "null" }, "scoreOneTerm": { "type": "null" }, "scoreSixMonth": { "type": "null" }, "scoreSevenMonth": { "type": "null" }, "scoreEightMonth": { "type": "null" }, "scoreNineMonth": { "type": "null" }, "scoreTenMonth": { "type": "null" }, "scoreTwoTerm": { "type": "null" }, "scoreYear": { "type": "null" }, "schoolYear": { "type": "null" }, "schoolTerm": { "type": "null" }, "parentPhone": { "type": "null" }, "photo": { "type": "null" }, "qrStr": { "type": "null" }, "month": { "type": "null" }, "contactName": { "type": "null" }, "contactType": { "type": "null" }, "contactContent": { "type": "null" }, "contactDate": { "type": "null" }, "grade": { "type": "null" }, "content": { "type": "null" }, "week": { "type": "null" }, "reply": { "type": "null" }, "isSpotCheck": { "type": "null" }, "comment": { "type": "null" }, "parentalMsg": { "type": "null" }, "fraction": { "type": "null" }, "strList": { "type": "null" }, "teacherPhone": { "type": "null" }, "atHome": { "type": "null" }, "atSchool": { "type": "null" }, "dgTotle": { "type": "null" }, "headImg": { "type": "null" }, "userType": { "type": "null" }, "educationDetails": { "type": "null" }, "socialDetails": { "type": "null" }, "jldateRange1": { "type": "null" }, "jldateEnd1": { "type": "null" }, "jlschool1": { "type": "null" }, "jlworkAs1": { "type": "null" }, "jldateRange2": { "type": "null" }, "jldateEnd2": { "type": "null" }, "jlschool2": { "type": "null" }, "jlworkAs2": { "type": "null" }, "jldateRange3": { "type": "null" }, "jldateEnd3": { "type": "null" }, "jlschool3": { "type": "null" }, "jlworkAs3": { "type": "null" }, "jldateRange4": { "type": "null" }, "jldateEnd4": { "type": "null" }, "jlschool4": { "type": "null" }, "jlworkAs4": { "type": "null" }, "jldateRange5": { "type": "null" }, "jldateEnd5": { "type": "null" }, "jlschool5": { "type": "null" }, "jlworkAs5": { "type": "null" }, "jcgx": { "type": "null" }, "jcgx2": { "type": "null" }, "jcgx3": { "type": "null" }, "jcgx4": { "type": "null" }, "jcgx5": { "type": "null" }, "jcxm": { "type": "null" }, "jcxm2": { "type": "null" }, "jcxm3": { "type": "null" }, "jcxm4": { "type": "null" }, "jcxm5": { "type": "null" }, "jczzmm": { "type": "null" }, "jczzmm2": { "type": "null" }, "jczzmm3": { "type": "null" }, "jczzmm4": { "type": "null" }, "jczzmm5": { "type": "null" }, "jcgzdw": { "type": "null" }, "jcgzdw2": { "type": "null" }, "jcgzdw3": { "type": "null" }, "jcgzdw4": { "type": "null" }, "jcgzdw5": { "type": "null" }, "jcjkzk": { "type": "null" }, "jcjkzk2": { "type": "null" }, "jcjkzk3": { "type": "null" }, "jcjkzk4": { "type": "null" }, "jcjkzk5": { "type": "null" }, "shcw": { "type": "null" }, "shxm": { "type": "null" }, "shzz": { "type": "null" }, "shrz": { "type": "null" }, "shjk": { "type": "null" }, "shcw1": { "type": "null" }, "shxm1": { "type": "null" }, "shzz1": { "type": "null" }, "shrz1": { "type": "null" }, "shjk1": { "type": "null" }, "shcw2": { "type": "null" }, "shxm2": { "type": "null" }, "shzz2": { "type": "null" }, "shrz2": { "type": "null" }, "shjk2": { "type": "null" }, "shcw3": { "type": "null" }, "shxm3": { "type": "null" }, "shzz3": { "type": "null" }, "shrz3": { "type": "null" }, "shjk3": { "type": "null" }, "currentGrade": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "remarks", "tenantId", "stuNo", "realName", "gender", "stuStatus", "classCode", "enrollStatus", "qrCode", "isGradu", "isClassLeader", "graduTime", "isInout", "classMasterName", "classMasterCode", "specialIn", "socialInsurance", "enrollNo", "enrollMiddleNo", "graduNo", "faceExclude", "faceExcludeReason", "avatarAudit", "idCard", "phone", "teacherNo", "teacherRealName", "education", "majorName", "majorCode", "householdAddress", "roomNo", "classQQ", "graduateNumber", "oldName", "className", "deptCode", "deptName", "classStatus", "majorLevel", "stuNos", "bankCard", "gradeCurr", "temporaryyeYear", "majorYears", "rewards", "evaluation", "appraisal", "studentStatus", "nationName", "postalAddress", "advantage", "liveAddress", "homeBirth", "national", "politicsStatus", "classNo", "stuNum", "manStuNum", "girlStuNum", "borrowingStuNum", "tel", "birthday", "initial", "scoreOneMonth", "scoreTwoMonth", "scoreThreeMonth", "scoreFourMonth", "scoreFiveMonth", "scoreOneTerm", "scoreSixMonth", "scoreSevenMonth", "scoreEightMonth", "scoreNineMonth", "scoreTenMonth", "scoreTwoTerm", "scoreYear", "schoolYear", "schoolTerm", "parentPhone", "photo", "qrStr", "month", "contactName", "contactType", "contactContent", "contactDate", "grade", "content", "week", "reply", "isSpotCheck", "comment", "parentalMsg", "fraction", "strList", "teacherPhone", "atHome", "atSchool", "dgTotle", "headImg", "userType", "educationDetails", "socialDetails", "jldateRange1", "jldateEnd1", "jlschool1", "jlworkAs1", "jldateRange2", "jldateEnd2", "jlschool2", "jlworkAs2", "jldateRange3", "jldateEnd3", "jlschool3", "jlworkAs3", "jldateRange4", "jldateEnd4", "jlschool4", "jlworkAs4", "jldateRange5", "jldateEnd5", "jlschool5", "jlworkAs5", "jcgx", "jcgx2", "jcgx3", "jcgx4", "jcgx5", "jcxm", "jcxm2", "jcxm3", "jcxm4", "jcxm5", "jczzmm", "jczzmm2", "jczzmm3", "jczzmm4", "jczzmm5", "jcgzdw", "jcgzdw2", "jcgzdw3", "jcgzdw4", "jcgzdw5", "jcjkzk", "jcjkzk2", "jcjkzk3", "jcjkzk4", "jcjkzk5", "shcw", "shxm", "shzz", "shrz", "shjk", "shcw1", "shxm1", "shzz1", "shrz1", "shjk1", "shcw2", "shxm2", "shzz2", "shrz2", "shjk2", "shcw3", "shxm3", "shzz3", "shrz3", "shjk3", "currentGrade" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } } } }, "security": [] } }, "/api/stuwork/stuworkstudyalternate": { "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 \"classCode\": \"1612052533\",//班级代码\r\n \"dateRange\": [\r\n \"2026-01-13\",\r\n \"2026-02-1\"\r\n ],//日期\r\n //学号集合\r\n \"stuNoList\": [\r\n \"121707251524\",\r\n \"161205253301\",\r\n \"161205253302\",\r\n \"161205253303\",\r\n \"161205253304\",\r\n \"161205253305\",\r\n \"161205253306\",\r\n \"161205253307\",\r\n \"161205253308\",\r\n \"161205253309\",\r\n \"161205253310\",\r\n \"161205253311\",\r\n \"161205253312\",\r\n \"161205253313\",\r\n \"161205253314\",\r\n \"161205253315\",\r\n \"161205253316\",\r\n \"161205253317\",\r\n \"161205253318\",\r\n \"161205253319\",\r\n \"161205253320\",\r\n \"161205253321\",\r\n \"161205253322\",\r\n \"161205253323\",\r\n \"161205253324\",\r\n \"161205253325\",\r\n \"161205253326\",\r\n \"161205253327\",\r\n \"161205253328\",\r\n \"161205253329\",\r\n \"161205253330\",\r\n \"161205253331\",\r\n \"161205253332\",\r\n \"161205253333\",\r\n \"161205253334\",\r\n \"161205253335\",\r\n \"161205253336\",\r\n \"161205253337\",\r\n \"161205253338\",\r\n \"161205253339\",\r\n \"161205253340\",\r\n \"161205253341\",\r\n \"161205253342\",\r\n \"161205253343\",\r\n \"161205253344\",\r\n \"161205253345\",\r\n \"161205253346\",\r\n \"161205253347\",\r\n \"161205253348\",\r\n \"161205253349\",\r\n \"161205253351\",\r\n \"161205253352\",\r\n \"161205253353\",\r\n \"161205253354\"\r\n ]\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/professional/teacherbase/getTeacherInfoCommon": { "get": { "summary": "指定教师列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "searchKeywords", "in": "query", "description": "关键字 工号或者姓名", "required": false, "example": "2", "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": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string" }, "updateTime": { "type": "string" }, "delFlag": { "type": "string" }, "remarks": { "type": "string", "nullable": true }, "tenantId": { "type": "integer" }, "sort": { "type": "integer" }, "teacherNo": { "type": "string" }, "realName": { "type": "string" }, "sex": { "type": "string" }, "birthday": { "type": "string" }, "national": { "type": "string" }, "politicsStatus": { "type": "string", "nullable": true }, "idCard": { "type": "string" }, "nativePlace": { "type": "string" }, "birthPlace": { "type": "string", "nullable": true }, "health": { "type": "null" }, "homePhone": { "type": "string", "nullable": true }, "telPhone": { "type": "string" }, "telPhoneTwo": { "type": "string", "nullable": true }, "homeAddress": { "type": "string" }, "speciality": { "type": "null" }, "teacherPhoto": { "type": "string" }, "deptCode": { "type": "string" }, "inoutFlag": { "type": "string" }, "inoutRemarks": { "type": "string", "nullable": true }, "bankNo": { "type": "string" }, "bankOpen": { "type": "string" }, "commonDeptCode": { "type": "string" }, "tied": { "type": "string" }, "isWeekPwd": { "type": "string" }, "teacherCate": { "type": "string" }, "teacherClassify": { "type": "string" }, "tiedYear": { "type": "string", "nullable": true }, "religiousBelief": { "type": "string" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "remarks", "tenantId", "sort", "teacherNo", "realName", "sex", "birthday", "national", "politicsStatus", "idCard", "nativePlace", "birthPlace", "health", "homePhone", "telPhone", "telPhoneTwo", "homeAddress", "speciality", "teacherPhoto", "deptCode", "inoutFlag", "inoutRemarks", "bankNo", "bankOpen", "commonDeptCode", "tied", "isWeekPwd", "teacherCate", "teacherClassify", "tiedYear", "religiousBelief" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": [\n {\n \"id\": \"067a5d950b3511ec98fd96fcb4d2b441\",\n \"teacherNo\": \"00729\",//工号\n \"realName\": \"吴甫\"//姓名\n }\n ],\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuworkstudyalternate/chooseTeacherAttendance": { "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 \"classNo\": \"2440\",//班号\r\n \"teacherNo\": \"00394\"//老师工号\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuworkstudyalternate/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": [ "094394674a81bae1befa1e7eb3f6790f" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuworkstudyalternate/queryAttendanceClass": { "post": { "summary": "待考勤班级列表(需要指定老师登录如00394,密码同admin)", "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": "null" }, "createBy": { "type": "null" }, "createTime": { "type": "null" }, "updateBy": { "type": "null" }, "updateTime": { "type": "null" }, "delFlag": { "type": "null" }, "remarks": { "type": "null" }, "tenantId": { "type": "null" }, "stuNo": { "type": "string" }, "realName": { "type": "string" }, "gender": { "type": "null" }, "stuStatus": { "type": "null" }, "classCode": { "type": "null" }, "enrollStatus": { "type": "null" }, "qrCode": { "type": "null" }, "isGradu": { "type": "null" }, "isClassLeader": { "type": "null" }, "graduTime": { "type": "null" }, "isInout": { "type": "null" }, "classMasterName": { "type": "null" }, "classMasterCode": { "type": "null" }, "specialIn": { "type": "null" }, "socialInsurance": { "type": "null" }, "enrollNo": { "type": "null" }, "enrollMiddleNo": { "type": "null" }, "graduNo": { "type": "null" }, "faceExclude": { "type": "null" }, "faceExcludeReason": { "type": "null" }, "avatarAudit": { "type": "null" }, "idCard": { "type": "null" }, "phone": { "type": "null" }, "teacherNo": { "type": "null" }, "teacherRealName": { "type": "null" }, "education": { "type": "null" }, "majorName": { "type": "null" }, "majorCode": { "type": "null" }, "householdAddress": { "type": "null" }, "roomNo": { "type": "string", "nullable": true }, "classQQ": { "type": "null" }, "graduateNumber": { "type": "null" }, "oldName": { "type": "null" }, "className": { "type": "null" }, "deptCode": { "type": "null" }, "deptName": { "type": "null" }, "classStatus": { "type": "null" }, "majorLevel": { "type": "null" }, "stuNos": { "type": "null" }, "bankCard": { "type": "null" }, "gradeCurr": { "type": "null" }, "temporaryyeYear": { "type": "null" }, "majorYears": { "type": "null" }, "rewards": { "type": "null" }, "evaluation": { "type": "null" }, "appraisal": { "type": "null" }, "studentStatus": { "type": "null" }, "nationName": { "type": "null" }, "postalAddress": { "type": "null" }, "advantage": { "type": "null" }, "liveAddress": { "type": "null" }, "homeBirth": { "type": "null" }, "national": { "type": "null" }, "politicsStatus": { "type": "null" }, "classNo": { "type": "null" }, "stuNum": { "type": "null" }, "manStuNum": { "type": "null" }, "girlStuNum": { "type": "null" }, "borrowingStuNum": { "type": "null" }, "tel": { "type": "null" }, "birthday": { "type": "null" }, "initial": { "type": "null" }, "scoreOneMonth": { "type": "null" }, "scoreTwoMonth": { "type": "null" }, "scoreThreeMonth": { "type": "null" }, "scoreFourMonth": { "type": "null" }, "scoreFiveMonth": { "type": "null" }, "scoreOneTerm": { "type": "null" }, "scoreSixMonth": { "type": "null" }, "scoreSevenMonth": { "type": "null" }, "scoreEightMonth": { "type": "null" }, "scoreNineMonth": { "type": "null" }, "scoreTenMonth": { "type": "null" }, "scoreTwoTerm": { "type": "null" }, "scoreYear": { "type": "null" }, "schoolYear": { "type": "null" }, "schoolTerm": { "type": "null" }, "parentPhone": { "type": "null" }, "photo": { "type": "null" }, "qrStr": { "type": "null" }, "month": { "type": "null" }, "contactName": { "type": "null" }, "contactType": { "type": "null" }, "contactContent": { "type": "null" }, "contactDate": { "type": "null" }, "grade": { "type": "null" }, "content": { "type": "null" }, "week": { "type": "null" }, "reply": { "type": "null" }, "isSpotCheck": { "type": "null" }, "comment": { "type": "null" }, "parentalMsg": { "type": "null" }, "fraction": { "type": "null" }, "strList": { "type": "null" }, "teacherPhone": { "type": "null" }, "atHome": { "type": "null" }, "atSchool": { "type": "null" }, "dgTotle": { "type": "null" }, "headImg": { "type": "null" }, "userType": { "type": "null" }, "educationDetails": { "type": "null" }, "socialDetails": { "type": "null" }, "jldateRange1": { "type": "null" }, "jldateEnd1": { "type": "null" }, "jlschool1": { "type": "null" }, "jlworkAs1": { "type": "null" }, "jldateRange2": { "type": "null" }, "jldateEnd2": { "type": "null" }, "jlschool2": { "type": "null" }, "jlworkAs2": { "type": "null" }, "jldateRange3": { "type": "null" }, "jldateEnd3": { "type": "null" }, "jlschool3": { "type": "null" }, "jlworkAs3": { "type": "null" }, "jldateRange4": { "type": "null" }, "jldateEnd4": { "type": "null" }, "jlschool4": { "type": "null" }, "jlworkAs4": { "type": "null" }, "jldateRange5": { "type": "null" }, "jldateEnd5": { "type": "null" }, "jlschool5": { "type": "null" }, "jlworkAs5": { "type": "null" }, "jcgx": { "type": "null" }, "jcgx2": { "type": "null" }, "jcgx3": { "type": "null" }, "jcgx4": { "type": "null" }, "jcgx5": { "type": "null" }, "jcxm": { "type": "null" }, "jcxm2": { "type": "null" }, "jcxm3": { "type": "null" }, "jcxm4": { "type": "null" }, "jcxm5": { "type": "null" }, "jczzmm": { "type": "null" }, "jczzmm2": { "type": "null" }, "jczzmm3": { "type": "null" }, "jczzmm4": { "type": "null" }, "jczzmm5": { "type": "null" }, "jcgzdw": { "type": "null" }, "jcgzdw2": { "type": "null" }, "jcgzdw3": { "type": "null" }, "jcgzdw4": { "type": "null" }, "jcgzdw5": { "type": "null" }, "jcjkzk": { "type": "null" }, "jcjkzk2": { "type": "null" }, "jcjkzk3": { "type": "null" }, "jcjkzk4": { "type": "null" }, "jcjkzk5": { "type": "null" }, "shcw": { "type": "null" }, "shxm": { "type": "null" }, "shzz": { "type": "null" }, "shrz": { "type": "null" }, "shjk": { "type": "null" }, "shcw1": { "type": "null" }, "shxm1": { "type": "null" }, "shzz1": { "type": "null" }, "shrz1": { "type": "null" }, "shjk1": { "type": "null" }, "shcw2": { "type": "null" }, "shxm2": { "type": "null" }, "shzz2": { "type": "null" }, "shrz2": { "type": "null" }, "shjk2": { "type": "null" }, "shcw3": { "type": "null" }, "shxm3": { "type": "null" }, "shzz3": { "type": "null" }, "shrz3": { "type": "null" }, "shjk3": { "type": "null" }, "currentGrade": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "remarks", "tenantId", "stuNo", "realName", "gender", "stuStatus", "classCode", "enrollStatus", "qrCode", "isGradu", "isClassLeader", "graduTime", "isInout", "classMasterName", "classMasterCode", "specialIn", "socialInsurance", "enrollNo", "enrollMiddleNo", "graduNo", "faceExclude", "faceExcludeReason", "avatarAudit", "idCard", "phone", "teacherNo", "teacherRealName", "education", "majorName", "majorCode", "householdAddress", "roomNo", "classQQ", "graduateNumber", "oldName", "className", "deptCode", "deptName", "classStatus", "majorLevel", "stuNos", "bankCard", "gradeCurr", "temporaryyeYear", "majorYears", "rewards", "evaluation", "appraisal", "studentStatus", "nationName", "postalAddress", "advantage", "liveAddress", "homeBirth", "national", "politicsStatus", "classNo", "stuNum", "manStuNum", "girlStuNum", "borrowingStuNum", "tel", "birthday", "initial", "scoreOneMonth", "scoreTwoMonth", "scoreThreeMonth", "scoreFourMonth", "scoreFiveMonth", "scoreOneTerm", "scoreSixMonth", "scoreSevenMonth", "scoreEightMonth", "scoreNineMonth", "scoreTenMonth", "scoreTwoTerm", "scoreYear", "schoolYear", "schoolTerm", "parentPhone", "photo", "qrStr", "month", "contactName", "contactType", "contactContent", "contactDate", "grade", "content", "week", "reply", "isSpotCheck", "comment", "parentalMsg", "fraction", "strList", "teacherPhone", "atHome", "atSchool", "dgTotle", "headImg", "userType", "educationDetails", "socialDetails", "jldateRange1", "jldateEnd1", "jlschool1", "jlworkAs1", "jldateRange2", "jldateEnd2", "jlschool2", "jlworkAs2", "jldateRange3", "jldateEnd3", "jlschool3", "jlworkAs3", "jldateRange4", "jldateEnd4", "jlschool4", "jlworkAs4", "jldateRange5", "jldateEnd5", "jlschool5", "jlworkAs5", "jcgx", "jcgx2", "jcgx3", "jcgx4", "jcgx5", "jcxm", "jcxm2", "jcxm3", "jcxm4", "jcxm5", "jczzmm", "jczzmm2", "jczzmm3", "jczzmm4", "jczzmm5", "jcgzdw", "jcgzdw2", "jcgzdw3", "jcgzdw4", "jcgzdw5", "jcjkzk", "jcjkzk2", "jcjkzk3", "jcjkzk4", "jcjkzk5", "shcw", "shxm", "shzz", "shrz", "shjk", "shcw1", "shxm1", "shzz1", "shrz1", "shjk1", "shcw2", "shxm2", "shzz2", "shrz2", "shjk2", "shcw3", "shxm3", "shzz3", "shrz3", "shjk3", "currentGrade" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuworkstudyalternate/queryNeedAttendanceStu": { "post": { "summary": "待考勤列表(00394登录)", "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 \"classCode\": \"1412052440\",//班级代码\r\n \"deptCode\": \"14\"//学院代码\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "null" }, "data": { "type": "object", "properties": { "total": { "type": "integer" }, "tableData": { "type": "object", "properties": { "records": { "type": "array", "items": { "type": "string" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" }, "pages": { "type": "integer" } }, "required": [ "records", "total", "size", "current", "pages" ] } }, "required": [ "total", "tableData" ] }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\r\n \"code\": 0,\r\n \"msg\": null,\r\n \"data\": [\r\n {\r\n \"stuNo\": \"141205244037\",//学号\r\n \"realName\": \"余梦馨\",//姓名\r\n \"classCode\": \"1412052440\",//班级代码\r\n \"className\": \"医药康养2440\",//班级名称\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",//班级规范名称\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"1\",//学期\r\n \"deptCode\": \"14\",//学院代码\r\n \"deptName\": \"医药康养学院\",//学院\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",//工学交替开始时间\r\n \"endTime\": \"2026-02-12 23:59:59\"//结束时间\r\n },\r\n {\r\n \"stuNo\": \"141205244047\",\r\n \"realName\": \"褚童杰\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244016\",\r\n \"realName\": \"刘佳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244022\",\r\n \"realName\": \"彭佳缘\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244002\",\r\n \"realName\": \"陈晨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244053\",\r\n \"realName\": \"胡心悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244015\",\r\n \"realName\": \"李悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244003\",\r\n \"realName\": \"陈欣悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244010\",\r\n \"realName\": \"化晓雨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244045\",\r\n \"realName\": \"朱紫涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244050\",\r\n \"realName\": \"秦钰宝\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244038\",\r\n \"realName\": \"张金丽\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244052\",\r\n \"realName\": \"朱永胜\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244025\",\r\n \"realName\": \"沈梓涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244008\",\r\n \"realName\": \"贺艺柔\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244024\",\r\n \"realName\": \"冉玉琴\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244049\",\r\n \"realName\": \"廖家玉\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244020\",\r\n \"realName\": \"刘悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244009\",\r\n \"realName\": \"侯予涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244019\",\r\n \"realName\": \"刘诗琪\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244018\",\r\n \"realName\": \"刘良红\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244026\",\r\n \"realName\": \"宋心茹\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244040\",\r\n \"realName\": \"张雅婷\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244034\",\r\n \"realName\": \"徐艳芳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244030\",\r\n \"realName\": \"王丝雨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244023\",\r\n \"realName\": \"钱鑫怡\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244021\",\r\n \"realName\": \"路伶俐\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244014\",\r\n \"realName\": \"李丁缘\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244039\",\r\n \"realName\": \"张萌萌\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244043\",\r\n \"realName\": \"周可艺\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244044\",\r\n \"realName\": \"朱欣怡\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244005\",\r\n \"realName\": \"杜加雯\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244036\",\r\n \"realName\": \"杨祎淼\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244048\",\r\n \"realName\": \"胡仁哲\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244035\",\r\n \"realName\": \"薛青祥\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244006\",\r\n \"realName\": \"顾子夕\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244031\",\r\n \"realName\": \"王伊茜\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244011\",\r\n \"realName\": \"黄璐\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244007\",\r\n \"realName\": \"郝思佳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244041\",\r\n \"realName\": \"赵奥雪\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244029\",\r\n \"realName\": \"汪阳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244001\",\r\n \"realName\": \"曹佳瑶\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244004\",\r\n \"realName\": \"戴静\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244046\",\r\n \"realName\": \"宗圣慧\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244033\",\r\n \"realName\": \"吴雨珊\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": null,\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-02-12 23:59:59\"\r\n }\r\n ],\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/workstudyattendance": { "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 \"stuNo\": \"141205244043\",\r\n \"realName\": \"周可艺\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",//考勤类型1到岗2未到岗3请假\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244018\",\r\n \"realName\": \"刘良红\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"2\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"remarks\": \"不在\"//落实情况\r\n },\r\n {\r\n \"stuNo\": \"141205244025\",\r\n \"realName\": \"沈梓涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"3\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244014\",\r\n \"realName\": \"李丁缘\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244008\",\r\n \"realName\": \"贺艺柔\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244026\",\r\n \"realName\": \"宋心茹\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244024\",\r\n \"realName\": \"冉玉琴\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244002\",\r\n \"realName\": \"陈晨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244041\",\r\n \"realName\": \"赵奥雪\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244021\",\r\n \"realName\": \"路伶俐\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244038\",\r\n \"realName\": \"张金丽\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244003\",\r\n \"realName\": \"陈欣悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244020\",\r\n \"realName\": \"刘悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244023\",\r\n \"realName\": \"钱鑫怡\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244011\",\r\n \"realName\": \"黄璐\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244050\",\r\n \"realName\": \"秦钰宝\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244035\",\r\n \"realName\": \"薛青祥\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244029\",\r\n \"realName\": \"汪阳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244019\",\r\n \"realName\": \"刘诗琪\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244049\",\r\n \"realName\": \"廖家玉\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244009\",\r\n \"realName\": \"侯予涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244022\",\r\n \"realName\": \"彭佳缘\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244006\",\r\n \"realName\": \"顾子夕\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244030\",\r\n \"realName\": \"王丝雨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244048\",\r\n \"realName\": \"胡仁哲\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244047\",\r\n \"realName\": \"褚童杰\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244044\",\r\n \"realName\": \"朱欣怡\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244007\",\r\n \"realName\": \"郝思佳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244040\",\r\n \"realName\": \"张雅婷\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244046\",\r\n \"realName\": \"宗圣慧\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244004\",\r\n \"realName\": \"戴静\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244053\",\r\n \"realName\": \"胡心悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244016\",\r\n \"realName\": \"刘佳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244045\",\r\n \"realName\": \"朱紫涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244015\",\r\n \"realName\": \"李悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244010\",\r\n \"realName\": \"化晓雨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244037\",\r\n \"realName\": \"余梦馨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244034\",\r\n \"realName\": \"徐艳芳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244001\",\r\n \"realName\": \"曹佳瑶\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244005\",\r\n \"realName\": \"杜加雯\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244052\",\r\n \"realName\": \"朱永胜\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244039\",\r\n \"realName\": \"张萌萌\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244036\",\r\n \"realName\": \"杨祎淼\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244033\",\r\n \"realName\": \"吴雨珊\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n },\r\n {\r\n \"stuNo\": \"141205244031\",\r\n \"realName\": \"王伊茜\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\"\r\n }\r\n]" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/workstudyattendance/queryHistoryList": { "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": { "classCode": "1412052440", "deptCode": "14" } } } }, "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\": \"0b66ed7324c0e92a66d8a24ab03a5bed\",\r\n \"stuNo\": \"141205244025\",\r\n \"realName\": \"沈梓涵\",//学生姓名\r\n \"classCode\": \"1412052440\",//班级代码\r\n \"className\": \"医药康养2440\",//班级名称\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",//学院\r\n \"attendanceType\": \"3\",//考勤类型\r\n \"attendanceTeacher\": \"00394\",//考勤人\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,//落实情况\r\n \"attendanceDay\": \"2026-01-13\"//考勤时间\r\n },\r\n {\r\n \"id\": \"0b9ccf8618c328c2fd552b5edb0d957e\",\r\n \"stuNo\": \"141205244006\",\r\n \"realName\": \"顾子夕\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"1272e7d7d17dd2788030cadbefc08288\",\r\n \"stuNo\": \"141205244026\",\r\n \"realName\": \"宋心茹\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"14e5e9054e2da35e4369522f67eb7d42\",\r\n \"stuNo\": \"141205244030\",\r\n \"realName\": \"王丝雨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"1fa2d0b15274628233569be8f76e1754\",\r\n \"stuNo\": \"141205244048\",\r\n \"realName\": \"胡仁哲\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"332972b325e4419a5fe39cf0a37d6bd4\",\r\n \"stuNo\": \"141205244043\",\r\n \"realName\": \"周可艺\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"34472bca7a5962fbf91dda0e3bcc33bc\",\r\n \"stuNo\": \"141205244020\",\r\n \"realName\": \"刘悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"34e76e5d493b87702d583196fe5d36d3\",\r\n \"stuNo\": \"141205244045\",\r\n \"realName\": \"朱紫涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"381241949739c817339990d1f8c4f7b5\",\r\n \"stuNo\": \"141205244047\",\r\n \"realName\": \"褚童杰\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"471529b4c79c3efae4cf387aaae3faf3\",\r\n \"stuNo\": \"141205244044\",\r\n \"realName\": \"朱欣怡\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"4d4c83b02d1ee666d482cd54f442ccb0\",\r\n \"stuNo\": \"141205244016\",\r\n \"realName\": \"刘佳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"502b95db72b1146b440b1f7c52ca0adb\",\r\n \"stuNo\": \"141205244046\",\r\n \"realName\": \"宗圣慧\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"53bacbac228e92cb8956a69b624c7648\",\r\n \"stuNo\": \"141205244023\",\r\n \"realName\": \"钱鑫怡\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"55758c8046d6a32f745586141a7bf6fe\",\r\n \"stuNo\": \"141205244049\",\r\n \"realName\": \"廖家玉\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"5a6f4164903aeebd0a6c7007a2edf179\",\r\n \"stuNo\": \"141205244018\",\r\n \"realName\": \"刘良红\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"2\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": \"不在\",\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"6377babe3d198e16928cbf3355670af8\",\r\n \"stuNo\": \"141205244033\",\r\n \"realName\": \"吴雨珊\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"6422857063b86238d7cfa8dc5b948fcf\",\r\n \"stuNo\": \"141205244035\",\r\n \"realName\": \"薛青祥\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"65dd944e91177797e7ff29c500d3623f\",\r\n \"stuNo\": \"141205244041\",\r\n \"realName\": \"赵奥雪\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"66c5230ce509ffed150d94d4716b862d\",\r\n \"stuNo\": \"141205244009\",\r\n \"realName\": \"侯予涵\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"66c7953bbfe422be562920b4ba2bfeb1\",\r\n \"stuNo\": \"141205244024\",\r\n \"realName\": \"冉玉琴\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"67b34c9652c8cc148a10d8561ebaa87b\",\r\n \"stuNo\": \"141205244038\",\r\n \"realName\": \"张金丽\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"70b504baa1b3b6e23aed17188d189b2e\",\r\n \"stuNo\": \"141205244003\",\r\n \"realName\": \"陈欣悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"7e234f56dc0ad1249da99ba4928f429b\",\r\n \"stuNo\": \"141205244039\",\r\n \"realName\": \"张萌萌\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"81089b03f66b09bf5c124214f5c5a8f0\",\r\n \"stuNo\": \"141205244050\",\r\n \"realName\": \"秦钰宝\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"81cba41b26cb5ff52894a88ec520adf7\",\r\n \"stuNo\": \"141205244008\",\r\n \"realName\": \"贺艺柔\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"8256953ffa0e1004edebf3aeda057db8\",\r\n \"stuNo\": \"141205244005\",\r\n \"realName\": \"杜加雯\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"879efd381e2adf5f50d688bd9a5a2a68\",\r\n \"stuNo\": \"141205244037\",\r\n \"realName\": \"余梦馨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"8825a521f36e73bd5ca43b27414b1238\",\r\n \"stuNo\": \"141205244052\",\r\n \"realName\": \"朱永胜\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"895615b8b879a834e1ea43029679c994\",\r\n \"stuNo\": \"141205244021\",\r\n \"realName\": \"路伶俐\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"8c18364a651ad8bbbb33073fe100940e\",\r\n \"stuNo\": \"141205244004\",\r\n \"realName\": \"戴静\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"95fdb610dde988ff94b7a47461abf492\",\r\n \"stuNo\": \"141205244029\",\r\n \"realName\": \"汪阳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"99cfe3d873615c5aa77c0d45fcd017d7\",\r\n \"stuNo\": \"141205244001\",\r\n \"realName\": \"曹佳瑶\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"9bc910d3b21f9a907ca54598414b089a\",\r\n \"stuNo\": \"141205244031\",\r\n \"realName\": \"王伊茜\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"a29639d4a9b871e84f2327cbdf6a5415\",\r\n \"stuNo\": \"141205244040\",\r\n \"realName\": \"张雅婷\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"ac0fd666eae68391ef274bb7d52f493f\",\r\n \"stuNo\": \"141205244053\",\r\n \"realName\": \"胡心悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"b6f17b27b266bf0eb83af3dedb8b0f8e\",\r\n \"stuNo\": \"141205244007\",\r\n \"realName\": \"郝思佳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"c41ae4f6921aee7e37317d5a0a04800d\",\r\n \"stuNo\": \"141205244011\",\r\n \"realName\": \"黄璐\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"c6a138fd64ac8c7bfc36e58099c3a16a\",\r\n \"stuNo\": \"141205244022\",\r\n \"realName\": \"彭佳缘\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"c9ac803db4d6acc6a076ed99eb63b231\",\r\n \"stuNo\": \"141205244015\",\r\n \"realName\": \"李悦\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"cbe5603e00b3bcb8f01015eb8f261421\",\r\n \"stuNo\": \"141205244034\",\r\n \"realName\": \"徐艳芳\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"d537e5858a28b725b1e7728b57b380ea\",\r\n \"stuNo\": \"141205244010\",\r\n \"realName\": \"化晓雨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"d61a76db874dd83303b0299baafa0baf\",\r\n \"stuNo\": \"141205244019\",\r\n \"realName\": \"刘诗琪\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"dd1f4a09a68e43052e82e7e7ba938a77\",\r\n \"stuNo\": \"141205244002\",\r\n \"realName\": \"陈晨\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"f89a445617a965c7db7c5a1e7a02c884\",\r\n \"stuNo\": \"141205244036\",\r\n \"realName\": \"杨祎淼\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n },\r\n {\r\n \"id\": \"fca1ce6f9a686b9da7b82eea2ef9e796\",\r\n \"stuNo\": \"141205244014\",\r\n \"realName\": \"李丁缘\",\r\n \"classCode\": \"1412052440\",\r\n \"className\": \"医药康养2440\",\r\n \"classProName\": \"24药品服务与管理[五](初)(2)\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"1\",\r\n \"startTime\": \"2026-01-13 00:00:00\",\r\n \"endTime\": \"2026-01-31 23:59:59\",\r\n \"deptCode\": \"14\",\r\n \"deptName\": \"医药康养学院\",\r\n \"attendanceType\": \"1\",\r\n \"attendanceTeacher\": \"00394\",\r\n \"createBy\": \"00394\",\r\n \"createTime\": \"2026-01-13 11:47:34\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"tenantId\": null,\r\n \"delFlag\": \"0\",\r\n \"remarks\": null,\r\n \"attendanceDay\": \"2026-01-13\"\r\n }\r\n ],\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/attendance_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/basic/basicdept/getDeptListByLevelTwo": { "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" }, "createBy": { "type": "string" }, "createDate": { "type": "string", "nullable": true }, "updateBy": { "type": "null" }, "updateDate": { "type": "null" }, "remarks": { "type": "string", "nullable": true }, "delFlag": { "type": "string" }, "deptCode": { "type": "string" }, "deptLevel": { "type": "string" }, "deptName": { "type": "string" }, "parentCode": { "type": "string" }, "trainFlag": { "type": "string" }, "secondFlag": { "type": "string" }, "teachFlag": { "type": "string" }, "sort": { "type": "integer" } }, "required": [ "id", "createBy", "createDate", "updateBy", "updateDate", "remarks", "delFlag", "deptCode", "deptLevel", "deptName", "parentCode", "trainFlag", "secondFlag", "teachFlag", "sort" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } } } }, "security": [] } }, "/api/stuwork/stuinnerleaveapplygroup/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": "12", "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", "nullable": true }, "updateTime": { "type": "string", "nullable": true }, "delFlag": { "type": "string" }, "tenantId": { "type": "null" }, "remarks": { "type": "null" }, "schoolYear": { "type": "null" }, "schoolTerm": { "type": "null" }, "startTime": { "type": "string" }, "endTime": { "type": "string" }, "reason": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "stuList": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "delFlag", "tenantId", "remarks", "schoolYear", "schoolTerm", "startTime", "endTime", "reason", "deptCode", "deptName", "stuList" ] } }, "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" ] } } } } }, "security": [] } }, "/api/basic/basicclass/queryAllClass": { "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" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string", "nullable": true }, "updateTime": { "type": "string" }, "remarks": { "type": "string" }, "delFlag": { "type": "string" }, "classCode": { "type": "string" }, "className": { "type": "string" }, "classNo": { "type": "string" }, "classProName": { "type": "string", "nullable": true }, "majorCode": { "type": "string" }, "enterDate": { "type": "string" }, "teacherNo": { "type": "string", "nullable": true }, "teacherRealName": { "type": "string", "nullable": true }, "grade": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "classQq": { "type": "string", "nullable": true }, "preStuNum": { "type": "integer" }, "isGraduate": { "type": "string" }, "isPractice": { "type": "string" }, "isUpdataPractice": { "type": "string" }, "gateRule": { "type": "string", "nullable": true }, "classStatus": { "type": "string" }, "isUnion": { "type": "string" }, "isLb": { "type": "string" }, "isHigh": { "type": "string" }, "stuLoseRate": { "type": "number" }, "stuNumOrigin": { "type": "integer" }, "enterYear": { "type": "integer" }, "majorName": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "remarks", "delFlag", "classCode", "className", "classNo", "classProName", "majorCode", "enterDate", "teacherNo", "teacherRealName", "grade", "deptCode", "deptName", "classQq", "preStuNum", "isGraduate", "isPractice", "isUpdataPractice", "gateRule", "classStatus", "isUnion", "isLb", "isHigh", "stuLoseRate", "stuNumOrigin", "enterYear", "majorName" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } } } }, "security": [] } }, "/api/basic/basicstudent/queryStudentListByClass": { "get": { "summary": "查询班级学生列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "classCode", "in": "query", "description": "", "required": false, "example": "1215092101", "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": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string", "nullable": true }, "updateTime": { "type": "string" }, "remarks": { "type": "string" }, "delFlag": { "type": "string" }, "classCode": { "type": "string" }, "className": { "type": "string" }, "classNo": { "type": "string" }, "classProName": { "type": "string", "nullable": true }, "majorCode": { "type": "string" }, "enterDate": { "type": "string" }, "teacherNo": { "type": "string", "nullable": true }, "teacherRealName": { "type": "string", "nullable": true }, "grade": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "classQq": { "type": "string", "nullable": true }, "preStuNum": { "type": "integer" }, "isGraduate": { "type": "string" }, "isPractice": { "type": "string" }, "isUpdataPractice": { "type": "string" }, "gateRule": { "type": "string", "nullable": true }, "classStatus": { "type": "string" }, "isUnion": { "type": "string" }, "isLb": { "type": "string" }, "isHigh": { "type": "string" }, "stuLoseRate": { "type": "number" }, "stuNumOrigin": { "type": "integer" }, "enterYear": { "type": "integer" }, "majorName": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "remarks", "delFlag", "classCode", "className", "classNo", "classProName", "majorCode", "enterDate", "teacherNo", "teacherRealName", "grade", "deptCode", "deptName", "classQq", "preStuNum", "isGraduate", "isPractice", "isUpdataPractice", "gateRule", "classStatus", "isUnion", "isLb", "isHigh", "stuLoseRate", "stuNumOrigin", "enterYear", "majorName" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuinnerleaveapplygroup": { "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 \"startTime\": \"2026-01-13 00:00:00\",//开始时间\r\n \"endTime\": \"2026-01-14 00:00:00\",//结束时间\r\n \"reason\": \"测试\",//请假原因\r\n \"stuList\": [\r\n {\r\n \"stuNo\": \"121509210101\",//学号\r\n \"realName\": \"蔡歆彧\",//姓名\r\n \"classCode\": \"1215092101\",//班号\r\n \"inOut\":\"1\",//是否允许离校\r\n \"status\": \"0\"//审核状态,默认放0\r\n },\r\n {\r\n \"stuNo\": \"121509210102\",\r\n \"realName\": \"常传宇\",\r\n \"classCode\": \"1215092101\",\r\n \"status\": \"0\"\r\n },\r\n {\r\n \"stuNo\": \"121509210103\",\r\n \"realName\": \"陈瀚雄\",\r\n \"classCode\": \"1215092101\",\r\n \"status\": \"0\"\r\n },\r\n {\r\n \"stuNo\": \"111204240104\",\r\n \"realName\": \"陈志皓\",\r\n \"classCode\": \"1112042401\",\r\n \"teacherNo\": \"00231\",\r\n \"teacherRealName\": \"高阿兴\",\r\n \"status\": \"0\"\r\n },\r\n {\r\n \"stuNo\": \"111204240105\",\r\n \"realName\": \"甘果\",\r\n \"classCode\": \"1112042401\",\r\n \"teacherNo\": \"00231\",\r\n \"teacherRealName\": \"高阿兴\",\r\n \"status\": \"0\"\r\n },\r\n {\r\n \"stuNo\": \"111204240107\",\r\n \"realName\": \"郭子恒\",\r\n \"classCode\": \"1112042401\",\r\n \"teacherNo\": \"00231\",\r\n \"teacherRealName\": \"高阿兴\",\r\n \"status\": \"0\"\r\n }\r\n ]\r\n}" } } }, "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" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string", "nullable": true }, "updateTime": { "type": "string" }, "remarks": { "type": "string" }, "delFlag": { "type": "string" }, "classCode": { "type": "string" }, "className": { "type": "string" }, "classNo": { "type": "string" }, "classProName": { "type": "string", "nullable": true }, "majorCode": { "type": "string" }, "enterDate": { "type": "string" }, "teacherNo": { "type": "string", "nullable": true }, "teacherRealName": { "type": "string", "nullable": true }, "grade": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "classQq": { "type": "string", "nullable": true }, "preStuNum": { "type": "integer" }, "isGraduate": { "type": "string" }, "isPractice": { "type": "string" }, "isUpdataPractice": { "type": "string" }, "gateRule": { "type": "string", "nullable": true }, "classStatus": { "type": "string" }, "isUnion": { "type": "string" }, "isLb": { "type": "string" }, "isHigh": { "type": "string" }, "stuLoseRate": { "type": "number" }, "stuNumOrigin": { "type": "integer" }, "enterYear": { "type": "integer" }, "majorName": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "remarks", "delFlag", "classCode", "className", "classNo", "classProName", "majorCode", "enterDate", "teacherNo", "teacherRealName", "grade", "deptCode", "deptName", "classQq", "preStuNum", "isGraduate", "isPractice", "isUpdataPractice", "gateRule", "classStatus", "isUnion", "isLb", "isHigh", "stuLoseRate", "stuNumOrigin", "enterYear", "majorName" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuinnerleaveapplygroup/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "87d6c816cd35ab0e1c236ad047846e69", "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" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} }, "example": "" } } }, "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" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string", "nullable": true }, "updateTime": { "type": "string" }, "remarks": { "type": "string" }, "delFlag": { "type": "string" }, "classCode": { "type": "string" }, "className": { "type": "string" }, "classNo": { "type": "string" }, "classProName": { "type": "string", "nullable": true }, "majorCode": { "type": "string" }, "enterDate": { "type": "string" }, "teacherNo": { "type": "string", "nullable": true }, "teacherRealName": { "type": "string", "nullable": true }, "grade": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "classQq": { "type": "string", "nullable": true }, "preStuNum": { "type": "integer" }, "isGraduate": { "type": "string" }, "isPractice": { "type": "string" }, "isUpdataPractice": { "type": "string" }, "gateRule": { "type": "string", "nullable": true }, "classStatus": { "type": "string" }, "isUnion": { "type": "string" }, "isLb": { "type": "string" }, "isHigh": { "type": "string" }, "stuLoseRate": { "type": "number" }, "stuNumOrigin": { "type": "integer" }, "enterYear": { "type": "integer" }, "majorName": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "remarks", "delFlag", "classCode", "className", "classNo", "classProName", "majorCode", "enterDate", "teacherNo", "teacherRealName", "grade", "deptCode", "deptName", "classQq", "preStuNum", "isGraduate", "isPractice", "isUpdataPractice", "gateRule", "classStatus", "isUnion", "isLb", "isHigh", "stuLoseRate", "stuNumOrigin", "enterYear", "majorName" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuinnerleaveapplygroup/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": "87d6c816cd35ab0e1c236ad047846e69", "createBy": "00308", "createTime": "2025-11-13 10:43:08", "updateBy": "00308", "updateTime": "2025-11-13 10:47:25", "delFlag": "0", "startTime": "2025-11-14 00:00:00", "endTime": "2025-11-15 00:00:00", "reason": "", "deptCode": "12", "deptName": "智能制造学院", "stuList": [ { "id": "3cab5e0204f95bfcd9ccaf4aba4c310c", "createBy": "00308", "createTime": "2025-11-13 10:47:26", "delFlag": "0", "classCode": "1215092101", "stuNo": "121509210101", "realName": "蔡歆彧", "teacherNo": "00152", "teacherRealName": "张静", "groupId": "87d6c816cd35ab0e1c236ad047846e69", "status": "0", "inOut": "1" }, { "id": "80f12e8aa19982c32d3f422467bb8b81", "createBy": "00308", "createTime": "2025-11-13 10:47:26", "delFlag": "0", "classCode": "1215092101", "stuNo": "121509210102", "realName": "常传宇", "teacherNo": "00152", "teacherRealName": "张静", "groupId": "87d6c816cd35ab0e1c236ad047846e69", "status": "0", "inOut": "0" } ] } } } }, "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" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string", "nullable": true }, "updateTime": { "type": "string" }, "remarks": { "type": "string" }, "delFlag": { "type": "string" }, "classCode": { "type": "string" }, "className": { "type": "string" }, "classNo": { "type": "string" }, "classProName": { "type": "string", "nullable": true }, "majorCode": { "type": "string" }, "enterDate": { "type": "string" }, "teacherNo": { "type": "string", "nullable": true }, "teacherRealName": { "type": "string", "nullable": true }, "grade": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "classQq": { "type": "string", "nullable": true }, "preStuNum": { "type": "integer" }, "isGraduate": { "type": "string" }, "isPractice": { "type": "string" }, "isUpdataPractice": { "type": "string" }, "gateRule": { "type": "string", "nullable": true }, "classStatus": { "type": "string" }, "isUnion": { "type": "string" }, "isLb": { "type": "string" }, "isHigh": { "type": "string" }, "stuLoseRate": { "type": "number" }, "stuNumOrigin": { "type": "integer" }, "enterYear": { "type": "integer" }, "majorName": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "remarks", "delFlag", "classCode", "className", "classNo", "classProName", "majorCode", "enterDate", "teacherNo", "teacherRealName", "grade", "deptCode", "deptName", "classQq", "preStuNum", "isGraduate", "isPractice", "isUpdataPractice", "gateRule", "classStatus", "isUnion", "isLb", "isHigh", "stuLoseRate", "stuNumOrigin", "enterYear", "majorName" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuinnerleaveapplygroup/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": [ "87d6c816cd35ab0e1c236ad047846e69" ] } } }, "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" }, "createBy": { "type": "string" }, "createTime": { "type": "string" }, "updateBy": { "type": "string", "nullable": true }, "updateTime": { "type": "string" }, "remarks": { "type": "string" }, "delFlag": { "type": "string" }, "classCode": { "type": "string" }, "className": { "type": "string" }, "classNo": { "type": "string" }, "classProName": { "type": "string", "nullable": true }, "majorCode": { "type": "string" }, "enterDate": { "type": "string" }, "teacherNo": { "type": "string", "nullable": true }, "teacherRealName": { "type": "string", "nullable": true }, "grade": { "type": "string" }, "deptCode": { "type": "string" }, "deptName": { "type": "string" }, "classQq": { "type": "string", "nullable": true }, "preStuNum": { "type": "integer" }, "isGraduate": { "type": "string" }, "isPractice": { "type": "string" }, "isUpdataPractice": { "type": "string" }, "gateRule": { "type": "string", "nullable": true }, "classStatus": { "type": "string" }, "isUnion": { "type": "string" }, "isLb": { "type": "string" }, "isHigh": { "type": "string" }, "stuLoseRate": { "type": "number" }, "stuNumOrigin": { "type": "integer" }, "enterYear": { "type": "integer" }, "majorName": { "type": "null" } }, "required": [ "id", "createBy", "createTime", "updateBy", "updateTime", "remarks", "delFlag", "classCode", "className", "classNo", "classProName", "majorCode", "enterDate", "teacherNo", "teacherRealName", "grade", "deptCode", "deptName", "classQq", "preStuNum", "isGraduate", "isPractice", "isUpdataPractice", "gateRule", "classStatus", "isUnion", "isLb", "isHigh", "stuLoseRate", "stuNumOrigin", "enterYear", "majorName" ] } }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/class_audit_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/stuwork/classattendance/queryMyClassList": { "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/classattendance/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": "isTrusted", "in": "query", "description": "", "required": false, "example": "true", "schema": { "type": "string" } }, { "name": "orderType", "in": "query", "description": "", "required": false, "example": "1", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "", "required": false, "example": "1123022508", "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\": 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 \"attendanceId\": null,\r\n \"stuNo\": \"112301250731\",//学号\r\n \"realName\": \"张昊麟\",//姓名\r\n \"attendanceType\": \"8\",//考勤类型\r\n \"roomNo\": null,//宿舍号\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,//家长电话1\r\n \"parentPhoneB\": null,//家长电话2\r\n \"phone\": \"130****8622\",//联系电话\r\n \"stuStatus\": \"1\",//学生状态\r\n \"isRoom\": null,//是否住宿\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"//是否扫脸\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250801\",\r\n \"realName\": \"金菲\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"182****3655\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250802\",\r\n \"realName\": \"金姗\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"137****0226\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250804\",\r\n \"realName\": \"姚一凡\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250805\",\r\n \"realName\": \"赵雅萍\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250806\",\r\n \"realName\": \"赵奕欣\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250807\",\r\n \"realName\": \"朱韵童\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"180****5950\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250808\",\r\n \"realName\": \"蔡嘉文\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"132****5810\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250809\",\r\n \"realName\": \"陈威宇\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"187****2301\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250810\",\r\n \"realName\": \"丁浩\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"135****************************7739\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"137****8350\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250811\",\r\n \"realName\": \"丁子洋\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250813\",\r\n \"realName\": \"何俊泽\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250814\",\r\n \"realName\": \"何昆硕\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"156****5378\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250815\",\r\n \"realName\": \"黄儒品\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"197****0082\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250816\",\r\n \"realName\": \"姜尚勤\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"153****8911\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250818\",\r\n \"realName\": \"李国富\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"131****2840\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250819\",\r\n \"realName\": \"李金原\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"150****3347\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250820\",\r\n \"realName\": \"李阳\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"180****0586\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250821\",\r\n \"realName\": \"李昱辰\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"189****7339\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250822\",\r\n \"realName\": \"李震威\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"193****8164\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250823\",\r\n \"realName\": \"刘佳豪\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"158****7999\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"198****1808\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250824\",\r\n \"realName\": \"娄浩\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"197****0083\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250825\",\r\n \"realName\": \"吕仁晨\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"151****6604\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250826\",\r\n \"realName\": \"秦天赐\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"159****1816\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"159****0710\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250827\",\r\n \"realName\": \"饶坤明\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"136****5658\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250828\",\r\n \"realName\": \"石智海\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"181****************4333\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"181****2938\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250830\",\r\n \"realName\": \"汪子豪\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"159****0399\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250831\",\r\n \"realName\": \"王晨旭\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250832\",\r\n \"realName\": \"王瑞凡\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"152****9599\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250833\",\r\n \"realName\": \"王涛\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"173****6129\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250834\",\r\n \"realName\": \"韦瑞\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"133****8413\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"133****7631\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250836\",\r\n \"realName\": \"吴志飞\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"184****2390\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250837\",\r\n \"realName\": \"杨礼超\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"158****8939\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250840\",\r\n \"realName\": \"张超\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"135****2303\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250841\",\r\n \"realName\": \"张界鸣\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"198****3622\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250842\",\r\n \"realName\": \"张鹏\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"173****7620\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250843\",\r\n \"realName\": \"张书瑜\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"138****0580\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250844\",\r\n \"realName\": \"张天乐\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"131****1762\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250845\",\r\n \"realName\": \"张鑫瑞\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"150****1792\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250847\",\r\n \"realName\": \"朱嘉宝\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"181****7633\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250848\",\r\n \"realName\": \"苏朦\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"138****8984\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"135****4609\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250849\",\r\n \"realName\": \"孟子怡\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"197****7387\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250850\",\r\n \"realName\": \"和钰婕\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"156****8783\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250851\",\r\n \"realName\": \"王舒晨\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": \"155****2281\",\r\n \"parentPhoneB\": \"\",\r\n \"phone\": \"182****8360\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250852\",\r\n \"realName\": \"尚旭阳\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"191****3494\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"112302250853\",\r\n \"realName\": \"扎西班久\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n },\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 \"attendanceId\": null,\r\n \"stuNo\": \"122301251732\",\r\n \"realName\": \"许雯曦\",\r\n \"attendanceType\": \"8\",\r\n \"roomNo\": null,\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,\r\n \"parentPhoneB\": null,\r\n \"phone\": \"133****8686\",\r\n \"stuStatus\": \"1\",\r\n \"isRoom\": null,\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"\r\n }\r\n ],\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/attend_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": {} } } } } }, "security": [] } }, "/api//stuwork/classattendance/saveDataBatch": { "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 \"photo\": \"\",//考勤照片\r\n \"classCode\": \"1123022508\",//班级代码\r\n \"orderType\": \"1\",//点名类型\r\n \"list\": [//考勤列表\r\n {\r\n \"stuNo\": \"112301250731\",//学号\r\n \"realName\": \"张昊麟\",//姓名\r\n \"attendanceType\": \"8\",//考勤类型\r\n \"roomNo\": null,//宿舍号\r\n \"stayDorm\": null,\r\n \"leaveReason\": null,\r\n \"leaveStartTime\": null,\r\n \"leaveEndTime\": null,\r\n \"bedNo\": null,\r\n \"dealContent\": null,\r\n \"parentPhoneA\": null,//家长电话1\r\n \"parentPhoneB\": null,//家长电话2\r\n \"phone\": \"130****8622\",//联系电话\r\n \"stuStatus\": \"1\",//学生状态\r\n \"isRoom\": null,//是否住宿\r\n \"canChangeAttendType\": true,\r\n \"classCode\": null,\r\n \"truancyNums\": null,\r\n \"outContactNums\": null,\r\n \"isDeviceIn\": \"0\"//是否扫脸\r\n }\r\n ]\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/call_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/stuwork/dormliveapply/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": "buildingNo", "in": "query", "description": "楼号", "required": false, "example": "4", "schema": { "type": "string" } }, { "name": "startTime", "in": "query", "description": "开始时间", "required": false, "example": "2023-12-08", "schema": { "type": "string" } }, { "name": "endTime", "in": "query", "description": "结束时间", "required": false, "example": "2023-12-09", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级代码", "required": false, "example": "1523042355", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": "2022-2023", "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": { "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\": \"91bd6b883f3c1f7977d98479ca68e8ce\",\n \"createBy\": \"00159\",\n \"createTime\": \"2022-12-28 21:08:24\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1512032140\",//班级代码\n \"schoolYear\": \"2022-2023\",//学年\n \"schoolTerm\": \"1\",//学期\n \"themeName\": \"饮食安全\",//活动主题\n \"author\": \"李江\",//主持人\n \"address\": \"班级qq\",//活动地点\n \"recordDate\": \"2023-01-06\",//活动时间\n \"attendNum\": \"46\",//参与人数\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5587895064.jpg\",//活动图片\n \"content\": \"

1、班主任讲解饮食不当引发的事故

2.、在家或在宿舍发生饮食事故后的如何解决,老师解答

3、观看饮食卫生引发的后果

4、班主任总结饮食卫生安全

\",//内容\n \"attachment2\": \"\",//活动图片2\n \"classNo\": null//班号\n },\n {\n \"id\": \"d59eab3516f254f57c2d10a0f0e19a84\",\n \"createBy\": \"00624\",\n \"createTime\": \"2022-12-26 12:22:25\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0212131802\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"抗疫安全\",\n \"author\": \"朱镇京\",\n \"address\": \"微信群\",\n \"recordDate\": \"2023-01-04\",\n \"attendNum\": \"29\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/2557431534.jpg\",\n \"content\": \"

1. 发热病人等居家隔离者应尽量单间居住,保持相对隔离;


2. 为防止潜伏期出现交叉感染,建议健康家庭成员之间同样保持一米以上距离,并戴口罩,少面对面近距离说话,有条件者建议单间居住;


3. 丢弃使用过的口罩时,不要接触口罩外侧,应用手指捏住口罩的系带,将其丢至医疗废物容器内;摘掉口罩后应立即洗手;


4. 提倡公筷、分餐,家人碗筷单独专用,饭后用开水煮沸15-30分钟进行消毒;


5. 处理熟食和生食的菜板及刀具要分开,处理生食和熟食之后要洗手;


6. 房间勤通风,每天通风2-3次,每次20-30分钟以上;


7. 每天家中地面及桌椅板凳、门把手、马桶均用84消毒液按1:100浓度湿抹、湿拖,30分钟后再用清水湿抹、湿拖一次,每天二次,使用84消毒液时注意通风、戴口罩手套;


8. 普通衣物、床单、浴巾、毛巾等可以60-90℃的热水和普通家用洗衣液清洗,清洗后完全干燥;


9. 对疑似和确诊病例所有的床单、衣服及用品均要用84消毒液按1:100浓度浸泡30分钟后再用清水清洗,患者生活污水、排泄物最好用2:100浓度84消毒液浸泡或喷洒30分钟以上再倒掉或冲掉;


10. 杜绝亲朋好友探访;


11. 不出门少出门。必要的外出回家后,可以用浓度为75%的酒精对带回物品的外表面进行消毒,手机和钥匙也需要消毒,并用纸巾擦拭干净;用流动水和肥皂或洗手液洗手,洗手后尽可能使用一次性纸巾擦手;


12. 家庭内各房间均应使用单独的带盖垃圾桶,扔垃圾后应密封垃圾袋并消毒;


13. 对疑似或确诊病例的接触者,从最后一次接触病例次日算起,应自行隔离14天,把防护措施做好,才能避免家中互相传染;


14. 规律作息,定时运动,放松心情,提高免疫力。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"62817b049885d2626ca47e3085bdf914\",\n \"createBy\": \"00291\",\n \"createTime\": \"2022-12-30 11:11:33\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0412231822\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"阳了后怎么办\",\n \"author\": \"朱振华\",\n \"address\": \"班级群\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"25\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5705409828.jpg\",\n \"content\": \"

如果发现自己“阳了”怎么办呢?我们就需要知道这些关键点。

1、学会识别症状、观察症状

新冠肺炎患者大多会出现以下几种症状:发热、咽痛、咳嗽、鼻塞、流鼻涕是常见的症状。

但有极少部分者可以没有发热,咳嗽,咳痰,胸闷气促呼吸困难的症状。极少部分患者表现为消化道的症状,会出现恶心呕吐、腹痛、腹胀的表现。如果去过疫区或者14天之内和诊断的新型肺炎的患者有密切接触史,就应该及时到医院发热门诊进行检查。

2、克服恐惧心理

全面放开之后,接下来的几个月可能会出现一个爆发的高潮阶段,但是大家不用太担心,如今即便是感染了,也完全没有开始的时候那么严重。而且我们现在有了疫苗和药物的双重保护,即便自己阳性了,也一定不要慌张,心态一定要积极,相信自己一定会好的。从心理上增强自身的抵抗力,轻松转阴。乐观的心态是很重要的。

3、及时看医生

如果不幸“阳”了,症状严重的话,建议还是尽快去看医生。尤其是老人和孩子以及免疫力低下的人群。如果出现胸痛、呼吸困难、言语或者四肢出现活动障碍一定要及时去医院治疗。学生在服用药物时,最好是要经过医生诊断过的,且必须按照医嘱服药,生活上一定要保证小朋友要多喝水、饮食清淡。

4、常备防疫物资

家里一定要准备一些防疫物资,以备不时之需。首先就是口罩等医用品,疫情高发期,口罩是出入各类公共场所的必备品,所以最好在家里囤一点。其次就是常备药品,家里要有点常备药,比如感冒药、抗病毒、退烧药、镇痛药、创可贴之类的。最后建议储备一些矿泉水了。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"cb4ccf157188de08d5be41579bdc3f6f\",\n \"createBy\": \"00351\",\n \"createTime\": \"2022-12-30 00:41:57\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0312141812\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"顶岗实习安全教育4\",\n \"author\": \"刘晨\",\n \"address\": \"QQ群\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"34\",\n \"attachment\": \"\",\n \"content\": \"

强调在当前疫情的情况下,在注意安全防护的同时顾及自己的身体健康,不要带病上班,如果感染了新冠病毒必须自行隔离修养,在生病痊愈后方可继续进入定岗实习岗位。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"dff1ae589a79c5f56620b5ebb1872529\",\n \"createBy\": \"00285\",\n \"createTime\": \"2023-01-03 10:58:02\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1132022223\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"假期安全教育\",\n \"author\": \"朱文彬\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-30\",\n \"attendNum\": \"19\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5265841864.jpg\",\n \"content\": \"

本学期即将结束,大家马上就要进入寒假,在寒假期间大家要注意安全防护。

1、交通安全

2、用电安全

3、增强防火意识

4、燃放烟花爆竹

最后,祝大家过一个开心快乐祥和的寒假。

\",\n \"attachment2\": \"/stuwork/minio/show?fileName=base-class_activity/4093541817.jpg\",\n \"classNo\": null\n },\n {\n \"id\": \"5acbd8d515a69cb53127b7798318ee0d\",\n \"createBy\": \"00587\",\n \"createTime\": \"2022-12-30 14:05:54\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"0217011706\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"假期安全教育\",\n \"author\": \"刘帆\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"29\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/0139526948.jpg\",\n \"content\": \"

假期安全教育

线上教学工作已经全面结束,寒假即将到来,在这里进行安全教育。

1、通过学习让学生知道寒假中哪些安全事项及预防

2、让学生度过一个快乐平安的春节

3、提高学生的安全意识。

\\t一、科学防范,确保健康

    因寒假时间较长,又恰逢春节,请您做好自己以及孩子健康的第一责任人,时时关注身体状况,若出现发热、干咳、乏力、咽痛等相关症状,可在家观察治疗,对症用药,必要时请及时到医疗机构就诊。

    尽量减少外出,若确需外出,坚持佩戴医用防护口罩,勤洗手,避免用未清洁的手触摸口、眼、鼻。

    同时保持环境卫生,每天对生活区域进行卫生清洁消毒,坚持开窗通风。保持充足的睡眠和阳光的心态,注意科学饮食,营养均衡。

\\t跟岗、顶岗的同学,严格遵守学院和企业疫情防控要求,要自觉佩戴口罩,尽量减少外出,减少聚集,合理饮食,科学防控疫情。

\\t二、安全教育,不可忽视

  请家长们牢固树立“生命至上”、“安全第一”的意识,教育孩子遵守交通法规,注意行路安全、骑车安全,牢记“马路似虎口、安全每一步”,防止交通意外事故的发生。

   提醒孩子注意居家安全,特别是单独在家的时候,务必严格规范天然气等易燃易爆危险品和火、电的使用,防止天然气爆炸和火灾等事故发生。过年期间,严禁孩子私自燃放烟花爆竹,加强防范意识。

\\t三、网络安全教育

\\t提高安全防范意识,严防网络电信诈骗,注意子女的资金使用情况,微信、支付宝消费情况;严禁买卖电信卡、银行卡,严禁将电话卡、身份证借给他人使用;严禁参与网络刷单,防止网络诈骗、电话诈骗、短信诈骗、金融诈骗。发现疑似情况及时与其班主任联系。

\\t四、合理安排假期时间

\\t1.重视劳动习惯的养成,支持引导孩子参与生产劳动和家务劳动。勤俭节约、移风易俗,养成良好的卫生行为习惯,加强自身品德修养,做文明学生、文明公民。

\\t2.居家锻炼。体育锻炼不能落下,每天都要有固定的运动时间,父母和孩子一起进行居家锻炼,增强孩子的体质。

\\t五、心理健康教育

\\t持续关注心理健康,营造温馨和谐的家庭氛围。帮助孩子汲取正能量,塑造积极向上的成长型思维。及时传递权威消息,缓解孩子的焦虑情绪。利用假期和孩子多交流、多谈心,沟通思想。关注孩子心理状态的变化,加强家校联系,如有异常及时与班主任沟通。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"5b48e36950e2580c0e1d1e05514017d0\",\n \"createBy\": \"00136\",\n \"createTime\": \"2022-12-29 19:39:01\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1112042215\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"网络安全教育\",\n \"author\": \"申如意\",\n \"address\": \"网络\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"40\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/0593834689.jpg\",\n \"content\": \"

1、不信谣不传谣

2、疫情当下,不能乱听信谣言

3、不要在网络乱购物

4、不去乱接陌生电话

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"e786720f9ab126a5232864da561c58c0\",\n \"createBy\": \"00605\",\n \"createTime\": \"2022-12-30 12:49:05\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1012021854\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"安全教育\",\n \"author\": \"彭庆英\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-28\",\n \"attendNum\": \"34\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/5650413881.jpg\",\n \"content\": \"

这次主题班会对这个学期班级出现的情况进行总结,对每天自觉打卡签到的同学进行表扬和鼓励,对有几个要催好几次才打卡的同学进行了点名,要他们向自觉的同学学习。

还是强调安全问题,比如这次有的同学阳了还带病上班,要他们多注意休息,等身体好了再去上班。对于还没有阳的同学,要做好自身防护。所以,在疫情时期,每个同学都要注意自己的身体健康,把身体保护好。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"12bb5ee8711301fcb3fcc15cad6a45b7\",\n \"createBy\": \"00444\",\n \"createTime\": \"2022-12-27 18:35:37\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1212082002\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"寒假安全教育\",\n \"author\": \"魏小兵\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-27\",\n \"attendNum\": \"44\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/4708171526.jpg\",\n \"content\": \"

【活动目的】

1、切实加强冬季,尤其是春节期间安全教育,增强学生安全防范意识。

2、向学生进行防冻、防火、防盗、防骗、防交通事故等安全防范教育,增强学生的自我保护和安全防范意识,防止学生遭受人身和财产损失。

【活动形式】

师讲述,生理解议论

【活动过程】:

为了同学们的身心健康与生命安全,为了大家过一个愉快而又充实的寒假。彻底杜绝元旦假期期间学生一切非正常事故的发生,请大家遵守以下规定:

一、外出活动及交通安全

1、不到水库、机井、塘坝、水窖、河道沙坑等地方滑冰。恶劣天气不在危险建筑物、大树下避雨雪、不玩火、学会防火、防电、防煤气中毒等安全常识。

2、不到悬崖、陡坡、易塌方的沙、土坑等地方玩耍,不攀爬树木、高大建筑物等。

3、不在危险的地方玩耍,不做任何带有危险性的游戏,及时远离危险因素。

4、不打架斗殴,不搞恶作剧,不做有损自己和他人的事。

5、外出路上要遵守交通规则,不骑自行车上路,不乘坐无证车,不乘坐酒后驾驶的车辆,出行注意交通安全。

6、未经家长同意,一律不准私自、探亲、访友,离家时一定要与父母打招呼。

7、遵守社会公德,遵纪守法,不做任何损害老百姓利益、危及他人生命财产安全的事情。

二、饮食卫生安全

1、不饮用不卫生食物,不喝生水,不吃凉饭菜,元旦期间,保持良好的饮食习惯,不要暴食暴饮。

2、注意个人饮食卫生。

3、不食用三无食品。

三、用电用火用气等方面的安全

1、掌握安全用电常识,不随便触摸电器设备。不靠近有电电源,不随便动各种插头,不撕拉乱接电线。使用电器需由家长指导。

2、掌握正确使用液化气常识,不单独开液化气炉灶,预防煤气中毒。

3、不玩烟花爆竹等危险物品。不玩火、远离火源,注意消防安全。

四、社会公德方面

1、遵守社会公德,遵纪守法,不做任何损害老百姓利益、危及他人生命财产安全的事情。

2、崇尚科学,不参加任何封建迷信活动和邪教组织;严禁参与赌博与变相赌博,严禁听、看不健康的音像与书刊,严禁进电子游戏室、网吧、歌舞厅活动,看有益电视节目。

7、孝敬父母、团结邻里、关爱幼小,自己能做的事情自己做,帮助父母干力所能及的家务活。

五、假期作业方面

期末考试即将来临,希望大家在元旦假期里以复习功课为主,好好学习,认真复习功课,保质保量完成假期作业;

总结

以上诸条希望大家认真落实,请家长帮忙监督和加强自我管理、自我约束,各科作业做完后让家长签名。春节是我国的传统节日,只有保证人身和财产安全,才能过个安乐祥和的春节。寒假即将到来,春节在向我们招手,希望大家时时刻刻注意自身以及周围人群的安全,防止安全事故的发生。希望能通过这次活动进一步增强我们的安全意识和自我保护意识。让安全系着你、我、他,愿我们的生活每天都充满阳光和鲜花,愿我们每个人都能拥有一个平安快乐的寒假,愿平安和幸福永远着伴随我们大家!


\",\n \"attachment2\": \"\",\n \"classNo\": null\n },\n {\n \"id\": \"be27cf63dd55b9d43bb54f89b7cc9a3f\",\n \"createBy\": \"00705\",\n \"createTime\": \"2022-12-29 22:28:22\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"classCode\": \"1317042124\",\n \"schoolYear\": \"2022-2023\",\n \"schoolTerm\": \"1\",\n \"themeName\": \"疫情防控安全教育\",\n \"author\": \"郭艺妹\",\n \"address\": \"线上\",\n \"recordDate\": \"2022-12-27\",\n \"attendNum\": \"50\",\n \"attachment\": \"/stuwork/minio/show?fileName=base-class_activity/1242747539.jpg\",\n \"content\": \"

1.本学期线上课程今天全部结束,课程成绩可在app内查看,1月3日到7日学校安排线上讲座,届时请同学们准时观看,观看要求到时通知;

2.下学期2月7号报到,住宿生不能提前报到,8号正式上课;

3.请同学们假期注意防护,保重身体,做好自己健康的第一责任人。

\",\n \"attachment2\": \"\",\n \"classNo\": null\n }\n ],\n \"total\": 7089,\n \"size\": 10,\n \"current\": 1,\n \"pages\": 709\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormliveapply/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": [ "bdecc32ebbae97b05ff6592a079d1e74", "787e2e5478e1b576a1a38283a669a5ec" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormliveapply/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/dormliveapply": { "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 \"liveType\": \"0\",//留宿类型\r\n \"liveDates\": [//留宿日期\r\n \"2026-01-16\",\r\n \"2026-01-17\"\r\n ] \r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/dormliveapply/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\":\"d4c4fd9ebb8f9cc002bdb5056fb27e19\",\r\n \"liveType\": \"0\",//留宿类型\r\n \"liveDates\": [//留宿日期\r\n \"2026-01-16\",\r\n \"2026-01-17\"\r\n ] \r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/dorm_live_audit_status": { "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/basic/basicholiday/getHolidayDayList": { "get": { "summary": "获得可选的留宿日期", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "holidayType", "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": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuturnover/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": "oldClassCode", "in": "query", "description": "原班级代码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "stuNo", "in": "query", "description": "学号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "turnoverType", "in": "query", "description": "异动类型", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "schoolYear", "in": "query", "description": "学年", "required": false, "example": "2025-2026", "schema": { "type": "string" } }, { "name": "schoolTerm", "in": "query", "description": "学期", "required": false, "example": "2", "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": { "total": { "type": "integer" }, "tableData": { "type": "object", "properties": { "records": { "type": "array", "items": { "type": "string" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" }, "pages": { "type": "integer" } }, "required": [ "records", "total", "size", "current", "pages" ] } }, "required": [ "total", "tableData" ] }, "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\": \"00ba858f135731909f110d4e305bc262\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",//异动原因\r\n \"stuNo\": \"151704254903\",//学号\r\n \"realName\": \"陈永河\",//姓名\r\n \"turnoverType\": \"2\",//异动类型\r\n \"oldClassCode\": \"1517042549\",//原班级代码\r\n \"newClassCode\": \"1512072548\",//新班级代码\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",//异动时间\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"2\",//学期\r\n \"phone\": null,\r\n \"deptCode\": \"15\",//学院代码\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",//学院\r\n \"oldClassNo\": \"2549\",//原班号\r\n \"newClassNo\": \"2548\"//新班号\r\n },\r\n {\r\n \"id\": \"0aa9484dbea47f7edc0d497234a8441c\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254920\",\r\n \"realName\": \"刘家豪\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"355158838fd810f13c8f3a53cbb341ce\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254919\",\r\n \"realName\": \"李子轩\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"3b718ac670b36791f62fd1fad5a32358\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254918\",\r\n \"realName\": \"李治龙\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"85c8ef29e82290a6d6c2f4d3db77ed78\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254902\",\r\n \"realName\": \"张雨\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"8afdedb90892092a1b026f09ec8bb64c\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2025-12-08 22:16:38\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"111\",\r\n \"stuNo\": \"151203254615\",\r\n \"realName\": \"仇森\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1517042549\",\r\n \"turnYear\": \"\",\r\n \"turnoverDate\": \"2025-12-08 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": null,\r\n \"isUnion\": \"0\",\r\n \"deptName\": null,\r\n \"oldClassNo\": null,\r\n \"newClassNo\": null\r\n },\r\n {\r\n \"id\": \"99376b275f589e1f6a9e9995dab02585\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254909\",\r\n \"realName\": \"顾君柯\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"b70c5354367dbd2d3dc24c1efb38ed78\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254910\",\r\n \"realName\": \"何昊阳\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"bd8165b4296be30b5bbcc68907b69100\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254908\",\r\n \"realName\": \"高凯枫\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n },\r\n {\r\n \"id\": \"f9460cf3789384990fbd178d3ebb6ed7\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",\r\n \"stuNo\": \"151704254904\",\r\n \"realName\": \"陈予扬\",\r\n \"turnoverType\": \"2\",\r\n \"oldClassCode\": \"1517042549\",\r\n \"newClassCode\": \"1512072548\",\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",\r\n \"schoolYear\": \"2025-2026\",\r\n \"schoolTerm\": \"2\",\r\n \"phone\": null,\r\n \"deptCode\": \"15\",\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",\r\n \"oldClassNo\": \"2549\",\r\n \"newClassNo\": \"2548\"\r\n }\r\n ],\r\n \"total\": 10,\r\n \"size\": 10,\r\n \"current\": 1,\r\n \"pages\": 1\r\n },\r\n \"ok\": true\r\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuturnover": { "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\": \"2\",//学期\r\n \"oldClassCode\": \"1517042549\",//原班级代码\r\n \"newClassCode\": \"1512072548\",//现班级代码\r\n \"turnoverType\": \"2\",//异动类型\r\n \"turnYear\": \"\",//转制类型\r\n \"turnoverDate\": \"2026-01-14 12:00:00\",//异动时间\r\n \"remarks\": \"测试\",//异动原因\r\n \"stuList\": [//学生列表\r\n {\r\n \"stuNo\": \"151704254902\",//学号\r\n \"realName\": \"张雨\"//姓名\r\n },\r\n {\r\n \"stuNo\": \"151704254903\",\r\n \"realName\": \"陈永河\"\r\n },\r\n {\r\n \"stuNo\": \"151704254904\",\r\n \"realName\": \"陈予扬\",\r\n },\r\n {\r\n \"stuNo\": \"151704254910\",\r\n \"realName\": \"何昊阳\"\r\n },\r\n {\r\n \"stuNo\": \"151704254909\",\r\n \"realName\": \"顾君柯\"\r\n },\r\n {\r\n \"stuNo\": \"151704254908\",\r\n \"realName\": \"高凯枫\"\r\n },\r\n {\r\n \"stuNo\": \"151704254918\",\r\n \"realName\": \"李治龙\"\r\n },\r\n {\r\n \"stuNo\": \"151704254919\",\r\n \"realName\": \"李子轩\"\r\n },\r\n {\r\n \"stuNo\": \"151704254920\",\r\n \"realName\": \"刘家豪\"\r\n }\r\n ]\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuturnover/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "00ba858f135731909f110d4e305bc262", "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": { "total": { "type": "integer" }, "tableData": { "type": "object", "properties": { "records": { "type": "array", "items": { "type": "string" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" }, "pages": { "type": "integer" } }, "required": [ "records", "total", "size", "current", "pages" ] } }, "required": [ "total", "tableData" ] }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"id\": \"00ba858f135731909f110d4e305bc262\",\n \"createBy\": \"admin\",\n \"createTime\": \"2026-01-14 14:37:18\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": \"测试\",//异动原因\n \"stuNo\": \"151704254903\",//学号\n \"realName\": \"陈永河\",//姓名\n \"turnoverType\": \"2\",//异动类型\n \"oldClassCode\": \"1517042549\",//原班级代码\n \"newClassCode\": \"1512072548\",//新班级代码\n \"turnYear\": null,\n \"turnoverDate\": \"2026-01-14 00:00:00\",//异动时间\n \"schoolYear\": \"2025-2026\",//学年\n \"schoolTerm\": \"2\",//学期\n \"phone\": null,\n \"deptCode\": \"15\",//学院代码\n \"isUnion\": \"0\",\n \"deptName\": \"交通运输学院\",//学院\n \"oldClassNo\": \"2549\",//原班号\n \"newClassNo\": \"2548\"//新班号\n }" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuturnover/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\": \"00ba858f135731909f110d4e305bc262\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 14:37:18\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": \"测试\",//异动原因\r\n \"stuNo\": \"151704254903\",//学号\r\n \"realName\": \"陈永河\",//姓名\r\n \"turnoverType\": \"2\",//异动类型\r\n \"oldClassCode\": \"1517042549\",//原班级代码\r\n \"newClassCode\": \"1512072548\",//新班级代码\r\n \"turnYear\": null,\r\n \"turnoverDate\": \"2026-01-14 00:00:00\",//异动时间\r\n \"schoolYear\": \"2025-2026\",//学年\r\n \"schoolTerm\": \"2\",//学期\r\n \"phone\": null,\r\n \"deptCode\": \"15\",//学院代码\r\n \"isUnion\": \"0\",\r\n \"deptName\": \"交通运输学院\",//学院\r\n \"oldClassNo\": \"2549\",//原班号\r\n \"newClassNo\": \"2548\"//新班号\r\n }" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stuturnover/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": [ "747564980e39e5aa7d4804f3fe60d157" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/turnover_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/turn_year_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/stuwork/stupunlish/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": "realName", "in": "query", "description": "", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "punlishMonth", "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": "deptCode", "in": "query", "description": "学院编码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "classCode", "in": "query", "description": "班级编码", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "stuNo", "in": "query", "description": "学号", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "punlishLevel", "in": "query", "description": "处分级别", "required": false, "example": "", "schema": { "type": "string" } }, { "name": "publishStatus", "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": { "total": { "type": "integer" }, "tableData": { "type": "object", "properties": { "records": { "type": "array", "items": { "type": "string" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" }, "pages": { "type": "integer" } }, "required": [ "records", "total", "size", "current", "pages" ] } }, "required": [ "total", "tableData" ] }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"records\": [\n {\n \"id\": \"00398071b2cbf6af196e4c2437f638be\",\n \"createBy\": \"00148\",\n \"createTime\": \"2025-11-26 14:46:39\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"stuNo\": \"111701202112\",//学号\n \"schoolYear\": \"2025-2026\",//学年\n \"schoolTerm\": \"1\",//学期\n \"punlishStartDate\": \"2025-11-25 00:00:00\",//处分开始时间\n \"punlishEndDate\": \"2026-03-25 00:00:00\",//处分结束时间\n \"punlishLevel\": \"1\",//处分级别\n \"punlishContent\": \"旷课多次\",//处分内容\n \"publishStatus\": \"1\",//处分状态\n \"deptCode\": \"11\",//学院代码\n \"deptName\": \"智能装备学院\",//学院名称\n \"teacherNo\": \"00659\",//班主任工号\n \"teacherRealName\": \"马林春\",//班主任姓名\n \"stuRealName\": \"杜旭\",//姓名\n \"classCode\": \"1117012021\",//班级代码\n \"classNo\": \"2021\",//班号\n \"isUnion\": \"0\"//是否联班\n }\n ],\n \"total\": 1,\n \"size\": 1,\n \"current\": 1,\n \"pages\": 1\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stupunlish": { "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 \"stuNo\": \"151704254905\",//学号\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\": \"1\",//处分状态\r\n \"attachment\": \"\"//附件\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stupunlish/detail": { "get": { "summary": "详情", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": false, "example": "9745cc5e828ea42bcc842f9aaec20c8c", "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": { "total": { "type": "integer" }, "tableData": { "type": "object", "properties": { "records": { "type": "array", "items": { "type": "string" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" }, "pages": { "type": "integer" } }, "required": [ "records", "total", "size", "current", "pages" ] } }, "required": [ "total", "tableData" ] }, "ok": { "type": "boolean" } }, "required": [ "code", "msg", "data", "ok" ] }, "example": "{\n \"code\": 0,\n \"msg\": null,\n \"data\": {\n \"id\": \"00398071b2cbf6af196e4c2437f638be\",\n \"createBy\": \"00148\",\n \"createTime\": \"2025-11-26 14:46:39\",\n \"updateBy\": null,\n \"updateTime\": null,\n \"delFlag\": \"0\",\n \"tenantId\": null,\n \"remarks\": null,\n \"stuNo\": \"111701202112\",//学号\n \"schoolYear\": \"2025-2026\",//学年\n \"schoolTerm\": \"1\",//学期\n \"punlishStartDate\": \"2025-11-25 00:00:00\",//处分开始时间\n \"punlishEndDate\": \"2026-03-25 00:00:00\",//处分结束时间\n \"punlishLevel\": \"1\",//处分级别\n \"punlishContent\": \"旷课多次\",//处分内容\n \"publishStatus\": \"1\",//处分状态\n \"deptCode\": \"11\",//学院代码\n \"deptName\": \"智能装备学院\",//学院名称\n \"teacherNo\": \"00659\",//班主任工号\n \"teacherRealName\": \"马林春\",//班主任姓名\n \"stuRealName\": \"杜旭\",//姓名\n \"classCode\": \"1117012021\",//班级代码\n \"classNo\": \"2021\",//班号\n \"isUnion\": \"0\"//是否联班\n },\n \"ok\": true\n}" } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stupunlish/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\": \"9745cc5e828ea42bcc842f9aaec20c8c\",\r\n \"createBy\": \"admin\",\r\n \"createTime\": \"2026-01-14 15:28:06\",\r\n \"updateBy\": null,\r\n \"updateTime\": null,\r\n \"delFlag\": \"0\",\r\n \"tenantId\": null,\r\n \"remarks\": null,\r\n \"schoolYear\": \"2025-2026\", //学年\r\n \"schoolTerm\": \"1\", //学期\r\n \"classCode\": \"1517042549\", //班级代码\r\n \"stuNo\": \"151704254905\", //学号\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\": \"1\", //处分状态\r\n \"attachment\": \"\" //附件\r\n}" } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/stupunlish/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": [ "747564980e39e5aa7d4804f3fe60d157" ] } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/punlish_level": { "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/publish_status": { "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/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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/school_term": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/yes_no_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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/student_status": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/enroll_status": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/class_status": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/pre_school_education": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicpoliticsstatusbase/getPoliticsStatusDict": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/basic/basicnation/getNationalDict": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/sexy": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/eye_status": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentcategory/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": { "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" ] } } }, "headers": {} } }, "security": [] } }, "/api/admin/dict/type/class_master_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" ] } } }, "headers": {} } }, "security": [] } }, "/api/stuwork/assessmentpoint/getAssessmentPointListByacId": { "get": { "summary": "班主任考核-考核指标", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "categortyId", "in": "query", "description": "考核项目id", "required": false, "example": "2", "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": "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" ] } } }, "headers": {} } }, "security": [] } }, "/teacherbase/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌主键", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "二级部门代码", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "授课类型", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "schema": { "type": "string" } }, { "name": "stationId", "in": "query", "description": "岗位信息关联主键", "required": false, "schema": { "type": "string" } }, { "name": "stationDutyLevelId", "in": "query", "description": "职务级别关联主键", "required": false, "schema": { "type": "string" } }, { "name": "retireDate", "in": "query", "description": "退休日期", "required": false, "schema": { "type": "string" } }, { "name": "pfTitleId", "in": "query", "description": "职称等级主键", "required": false, "schema": { "type": "string" } }, { "name": "searchInfo", "in": "query", "description": "教职工信息", "required": false, "schema": { "type": "string" } }, { "name": "searchKeywords", "in": "query", "description": "搜索关键词", "required": false, "schema": { "type": "string" } }, { "name": "secDeptCode", "in": "query", "description": "子部门代码", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "教职工", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCodeList", "in": "query", "description": "部门代码集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roleCode", "in": "query", "description": "角色代码", "required": false, "schema": { "type": "string" } }, { "name": "atStation", "in": "query", "description": "在岗累呗", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getById": { "get": { "summary": "通过id查询教职工基础信息表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/addInformation": { "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": { "$ref": "#/components/schemas/BaseInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/updateOtherInfo": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": null, "data": null } }, "2": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": null, "data": null } }, "3": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/resetPassWord": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherBase", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryAllTeacher": { "get": { "summary": "查询所有在职教师信息 deptCode 替换成部门名称", "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": { "$ref": "#/components/schemas/RListProfessionalTeacherBase", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/getAddressListByTeachBase": { "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryAllTeacherByRecruit": { "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": { "$ref": "#/components/schemas/RListProfessionalTeacherBase", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/updateInout": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherBase", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/exportTeacherInfo": { "post": { "summary": "导出教职工信息. TODO 待调整", "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": { "$ref": "#/components/schemas/TeacherBaseDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getTeacherInfoCommon": { "get": { "summary": "通用根据工号或者姓名查询教职工信息", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌主键", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "二级部门代码", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "授课类型", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "schema": { "type": "string" } }, { "name": "stationId", "in": "query", "description": "岗位信息关联主键", "required": false, "schema": { "type": "string" } }, { "name": "stationDutyLevelId", "in": "query", "description": "职务级别关联主键", "required": false, "schema": { "type": "string" } }, { "name": "retireDate", "in": "query", "description": "退休日期", "required": false, "schema": { "type": "string" } }, { "name": "pfTitleId", "in": "query", "description": "职称等级主键", "required": false, "schema": { "type": "string" } }, { "name": "searchInfo", "in": "query", "description": "教职工信息", "required": false, "schema": { "type": "string" } }, { "name": "searchKeywords", "in": "query", "description": "搜索关键词", "required": false, "schema": { "type": "string" } }, { "name": "secDeptCode", "in": "query", "description": "子部门代码", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "教职工", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCodeList", "in": "query", "description": "部门代码集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roleCode", "in": "query", "description": "角色代码", "required": false, "schema": { "type": "string" } }, { "name": "atStation", "in": "query", "description": "在岗累呗", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/train/getTrainDeptLeader": { "get": { "summary": "获取二级部门下的培训审批人", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getDeptTeacher": { "get": { "summary": "根据部门编码获取部门下的成员 (子部门代码)", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/TeacherBaseList": { "get": { "summary": "查询二级部门下 教职工列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "真实姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "归属部门", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "教师类别", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getMyTeacherNo": { "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherStationInfo": { "post": { "summary": "查询教职工 信息 包含 学历等信息. TODO 待修改", "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": { "$ref": "#/components/schemas/TeacherBaseDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryMyDeptCode": { "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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RString", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } } } } } } }, "security": [] } }, "/teacherbase/teacherListWithPermission": { "get": { "summary": "查询指定部门下教职工信息是否有对应的权限 roleCode 入参", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌主键", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "二级部门代码", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "授课类型", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "schema": { "type": "string" } }, { "name": "stationId", "in": "query", "description": "岗位信息关联主键", "required": false, "schema": { "type": "string" } }, { "name": "stationDutyLevelId", "in": "query", "description": "职务级别关联主键", "required": false, "schema": { "type": "string" } }, { "name": "retireDate", "in": "query", "description": "退休日期", "required": false, "schema": { "type": "string" } }, { "name": "pfTitleId", "in": "query", "description": "职称等级主键", "required": false, "schema": { "type": "string" } }, { "name": "searchInfo", "in": "query", "description": "教职工信息", "required": false, "schema": { "type": "string" } }, { "name": "searchKeywords", "in": "query", "description": "搜索关键词", "required": false, "schema": { "type": "string" } }, { "name": "secDeptCode", "in": "query", "description": "子部门代码", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "教职工", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCodeList", "in": "query", "description": "部门代码集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roleCode", "in": "query", "description": "角色代码", "required": false, "schema": { "type": "string" } }, { "name": "atStation", "in": "query", "description": "在岗累呗", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/teacherListByPermission": { "get": { "summary": "查询指定角色的老师", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌主键", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "二级部门代码", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "授课类型", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "schema": { "type": "string" } }, { "name": "stationId", "in": "query", "description": "岗位信息关联主键", "required": false, "schema": { "type": "string" } }, { "name": "stationDutyLevelId", "in": "query", "description": "职务级别关联主键", "required": false, "schema": { "type": "string" } }, { "name": "retireDate", "in": "query", "description": "退休日期", "required": false, "schema": { "type": "string" } }, { "name": "pfTitleId", "in": "query", "description": "职称等级主键", "required": false, "schema": { "type": "string" } }, { "name": "searchInfo", "in": "query", "description": "教职工信息", "required": false, "schema": { "type": "string" } }, { "name": "searchKeywords", "in": "query", "description": "搜索关键词", "required": false, "schema": { "type": "string" } }, { "name": "secDeptCode", "in": "query", "description": "子部门代码", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "教职工", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCodeList", "in": "query", "description": "部门代码集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roleCode", "in": "query", "description": "角色代码", "required": false, "schema": { "type": "string" } }, { "name": "atStation", "in": "query", "description": "在岗累呗", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherBase": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } } } } } } }, "security": [] } }, "/teacherbase/search": { "get": { "summary": "模糊检索教职工信息 返回参数包含 部门名称", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "keyword", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/resetTeacherPwd": { "get": { "summary": "重置教职工密码", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "token", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "examples": { "1": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": null, "data": null } }, "2": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": null, "data": null } }, "3": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getTeacherInfoForEmsSearch": { "get": { "summary": "获取教师库 用于教务指定任课教师用", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌主键", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "二级部门代码", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "授课类型", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "schema": { "type": "string" } }, { "name": "stationId", "in": "query", "description": "岗位信息关联主键", "required": false, "schema": { "type": "string" } }, { "name": "stationDutyLevelId", "in": "query", "description": "职务级别关联主键", "required": false, "schema": { "type": "string" } }, { "name": "retireDate", "in": "query", "description": "退休日期", "required": false, "schema": { "type": "string" } }, { "name": "pfTitleId", "in": "query", "description": "职称等级主键", "required": false, "schema": { "type": "string" } }, { "name": "searchInfo", "in": "query", "description": "教职工信息", "required": false, "schema": { "type": "string" } }, { "name": "searchKeywords", "in": "query", "description": "搜索关键词", "required": false, "schema": { "type": "string" } }, { "name": "secDeptCode", "in": "query", "description": "子部门代码", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "教职工", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCodeList", "in": "query", "description": "部门代码集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roleCode", "in": "query", "description": "角色代码", "required": false, "schema": { "type": "string" } }, { "name": "atStation", "in": "query", "description": "在岗累呗", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } } } } } } }, "security": [] } }, "/teacherbase/moidfyOtherInfo": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherBase", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getMissTeacherInfo": { "get": { "summary": "教职工信息未填写完全名单查询", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "生日", "required": false, "schema": { "type": "string" } }, { "name": "national", "in": "query", "description": "民族", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatus", "in": "query", "description": "政治面貌主键", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "nativePlace", "in": "query", "description": "籍贯", "required": false, "schema": { "type": "string" } }, { "name": "birthPlace", "in": "query", "description": "出生地", "required": false, "schema": { "type": "string" } }, { "name": "health", "in": "query", "description": "健康状况", "required": false, "schema": { "type": "string" } }, { "name": "homePhone", "in": "query", "description": "家庭电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "telPhoneTwo", "in": "query", "description": "手机号码", "required": false, "schema": { "type": "string" } }, { "name": "homeAddress", "in": "query", "description": "家庭地址", "required": false, "schema": { "type": "string" } }, { "name": "speciality", "in": "query", "description": "特长", "required": false, "schema": { "type": "string" } }, { "name": "teacherPhoto", "in": "query", "description": "照片", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "二级部门代码", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否允许进出", "required": false, "schema": { "type": "string" } }, { "name": "inoutRemarks", "in": "query", "description": "进出备注", "required": false, "schema": { "type": "string" } }, { "name": "bankNo", "in": "query", "description": "银行卡号", "required": false, "schema": { "type": "string" } }, { "name": "bankOpen", "in": "query", "description": "开户行", "required": false, "schema": { "type": "string" } }, { "name": "commonDeptCode", "in": "query", "description": "所属二级部门(通用)", "required": false, "schema": { "type": "string" } }, { "name": "tied", "in": "query", "description": "是否退休", "required": false, "schema": { "type": "string" } }, { "name": "isWeekPwd", "in": "query", "description": "是否弱密码", "required": false, "schema": { "type": "string" } }, { "name": "teacherCate", "in": "query", "description": "授课类型", "required": false, "schema": { "type": "string" } }, { "name": "teacherClassify", "in": "query", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)", "required": false, "schema": { "type": "string" } }, { "name": "tiedYear", "in": "query", "description": "退休年份", "required": false, "schema": { "type": "string" } }, { "name": "religiousBelief", "in": "query", "description": "宗教信仰", "required": false, "schema": { "type": "string" } }, { "name": "stationId", "in": "query", "description": "岗位信息关联主键", "required": false, "schema": { "type": "string" } }, { "name": "stationDutyLevelId", "in": "query", "description": "职务级别关联主键", "required": false, "schema": { "type": "string" } }, { "name": "retireDate", "in": "query", "description": "退休日期", "required": false, "schema": { "type": "string" } }, { "name": "pfTitleId", "in": "query", "description": "职称等级主键", "required": false, "schema": { "type": "string" } }, { "name": "searchInfo", "in": "query", "description": "教职工信息", "required": false, "schema": { "type": "string" } }, { "name": "searchKeywords", "in": "query", "description": "搜索关键词", "required": false, "schema": { "type": "string" } }, { "name": "secDeptCode", "in": "query", "description": "子部门代码", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "教职工", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "deptCodeList", "in": "query", "description": "部门代码集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "roleCode", "in": "query", "description": "角色代码", "required": false, "schema": { "type": "string" } }, { "name": "atStation", "in": "query", "description": "在岗累呗", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherOtherInfo": { "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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getAllInfoAboutList": { "get": { "summary": "外部接口 职工信息 基础字典集合 TODO 原对外接口 做什么用的?", "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "examples": { "1": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": null, "data": null } }, "2": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": null, "data": null } }, "3": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/batchSetTopFlag": { "get": { "summary": "批量设置最高标记", "deprecated": false, "description": "TODO 批量设置最高标记 临时放开\n批量设置最高标记\n批量设置职称、职业资格、学历学位、教师资格证的最高标记", "tags": [], "parameters": [ { "name": "key", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RVoid" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } } } } } } }, "security": [] } }, "/teacherbase/getTeacherBase": { "get": { "summary": "内部接口-根据教职工工号查询教师信息", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getByTeacherNo": { "get": { "summary": "内部接口- 重复接口. 同 getTeacherBase TODO 待删除", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getTeacherBaseByDept": { "get": { "summary": "内部接口-根据二级部门代码查询教职工列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getTeacherBaseByDeptCode": { "get": { "summary": "内部接口-根据子部门代码查询教职工列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getTeacherBaseList": { "post": { "summary": "内部接口-根据教职工工号集合查询教职工信息. remarks 替换成 部门名称", "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalTeacherBase", "description": "教职工基础信息表" }, "description": "" }, "examples": { "1": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "2": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "3": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "4": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "5": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "6": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "7": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "8": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "9": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "10": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } }, "security": [] } }, "/teacherbase/queryAllTeacherInfo": { "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": { "$ref": "#/components/schemas/RListTeacherBaseVO", "description": "\n TODO 待修改" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/train/getTrainDeptLeaderForInner": { "get": { "summary": "内部接口-获取二级部门下的培训审批人", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "deptCode", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryAllTeacherNo": { "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": { "$ref": "#/components/schemas/RListString", "description": "工号集合" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } } } } } } }, "security": [] } }, "/teacherbase/list/face": { "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": { "$ref": "#/components/schemas/RListProfessionalTeacherBase", "description": "基础信息全量信息" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/getTeacherNoSen": { "get": { "summary": "内部接口-查询教职工 手机号码 非脱敏数据", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/getTeacherByInfo": { "get": { "summary": "内部接口-根据信息 匹配教职工工号或者身份证号", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherInfo", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/count": { "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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/listByAtSchool": { "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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListProfessionalTeacherBase", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/getTeacherByTeacherNo": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/MapString", "description": "R" }, "examples": { "1": { "summary": "成功示例", "value": { "": "" } }, "2": { "summary": "成功示例", "value": { "": "" } }, "3": { "summary": "成功示例", "value": { "": "" } }, "4": { "summary": "成功示例", "value": { "": "" } }, "5": { "summary": "成功示例", "value": { "": "" } }, "6": { "summary": "成功示例", "value": { "": "" } }, "7": { "summary": "成功示例", "value": { "": "" } }, "8": { "summary": "成功示例", "value": { "": "" } }, "9": { "summary": "成功示例", "value": { "": "" } }, "10": { "summary": "成功示例", "value": { "": "" } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherByTeacherNo": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalTeacherBase", "description": "教职工基础信息表" }, "description": "R" }, "examples": { "1": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "2": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "3": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "4": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "5": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "6": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "7": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "8": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "9": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] }, "10": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } }, "security": [] } }, "/teacherbase/queryTeacherGroupByDept": { "post": { "summary": "内部接口-查每个部门的老师. TODO 待修改", "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": { "$ref": "#/components/schemas/TeacherBaseDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/TeacherBaseVO", "description": "net.cyweb.cloud.professional.api.vo.TeacherBaseVO" }, "description": "R" }, "examples": { "1": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "2": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "3": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "4": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "5": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "6": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "7": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "8": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "9": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] }, "10": { "summary": "成功示例", "value": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } ] } } } } } }, "security": [] } }, "/teacherbase/queryTeacherTelByTeacherNoList": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RMapString", "description": "工号->号码" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "": "" } } } } } } } }, "security": [] } }, "/teacherbase/getTeacherListByInfo": { "post": { "summary": "内部接口-根据 教职工姓名 工号 身份证,用工性质 教师类别 查询教职工信息(可查询离职的). TODO 待修改", "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": { "$ref": "#/components/schemas/TeacherInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListProfessionalTeacherBase", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/getTeacherListByCate": { "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": { "$ref": "#/components/schemas/TeacherInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListString", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } } } } } } }, "security": [] } }, "/teacherbase/getTeacherBaseByTeacherNo": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/MapProfessionalTeacherBase", "description": "R" }, "examples": { "1": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "2": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "3": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "4": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "5": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "6": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "7": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "8": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "9": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } }, "10": { "summary": "成功示例", "value": { "": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } } } } } } } }, "security": [] } }, "/teacherbase/getDeptTeacherNum": { "get": { "summary": "内部接口- 统计各部门人数 TODO 待修改", "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": { "$ref": "#/components/schemas/RListDeptTeacherNumVO", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0 } ] } } } } } } }, "security": [] } }, "/teacherbase/getTeacherByConditon": { "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": { "$ref": "#/components/schemas/TeacherBaseDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListProfessionalTeacherBase", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/queryDeptTeacherInfo": { "post": { "summary": "内部接口-统计各部门人数名单. TODO 待调整", "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListDeptTeacherListVO", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherByPhone": { "get": { "summary": "内部接口-根据手机号码查询用户信息", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "phone", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RMap", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "2": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "3": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": { "": null } } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherByIdCardForCheck": { "get": { "summary": "内部接口-根据证件号码 判断用户数量", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "idCard", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherByDeptCode": { "get": { "summary": "内部接口-根据部门代码 查询 教职工工号集合", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "String", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RListString", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ "" ] } } } } } } }, "security": [] } }, "/teacherbase/queryNoKnowExamTeacherList": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListMap", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "2": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "3": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": 0, "msg": "", "data": [ { "": null } ] } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherNumsByDeptCodeAndNameList": { "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": { "$ref": "#/components/schemas/TeacherBaseDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherInfoByTeacherNo": { "get": { "summary": "内部接口-根据工号查询 教职工信息 包括全量部门信息,二级部门代码", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RTeacherBaseVO", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "workId": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "teacherNo": "", "realName": "", "sex": "", "birthday": "", "national": "", "politicsStatus": "", "idCard": "", "nativePlace": "", "birthPlace": "", "health": "", "homePhone": "", "telPhone": "", "telPhoneTwo": "", "homeAddress": "", "speciality": "", "teacherPhoto": "", "deptCode": "", "inoutFlag": "", "inoutRemarks": "", "bankNo": "", "bankOpen": "", "commonDeptCode": "", "tied": "", "isWeekPwd": "", "teacherCate": "", "teacherClassify": "", "tiedYear": "", "religiousBelief": "", "age": "", "employmentNature": "", "dgreeName": "", "dgreeNameA": "", "deptName": "", "oldBranchId": "", "isMaster": "", "teacherNos": "", "initial": "", "stationLevelName": "", "pfTitleId": "", "titleName": "", "workId": "", "workLevelName": "", "workName": "", "workInfo": "", "highCer": "", "midCer": "", "teacherCer": "", "dutyDesc": "", "hasRole": false, "stationDate": "", "stationTypeId": "" } } } } } } } }, "security": [] } }, "/teacherbase/countTeacherTotalForCityBoard": { "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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RLong", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "6": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "7": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "8": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "9": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } }, "10": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": 0 } } } } } } }, "security": [] } }, "/teacherbase/queryTeacherBaseByNo": { "get": { "summary": "根据工号查询 教师信息 TODO 待修改", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "query", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/teacherbase/queryTeacherBaseByNoByAssets": { "get": { "summary": "资产特殊使用", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "query", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/teacherbase/queryTeacherInfoForEms": { "get": { "summary": "补考重修授权 查询教师信息. 重复接口. 同 getTeacherInfoForEmsSearch", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "query", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalstationtype/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "typeName", "in": "query", "description": "岗位类别名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationtype/getById": { "get": { "summary": "通过id查询岗位类别", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationtype/add": { "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": { "$ref": "#/components/schemas/ProfessionalStationType", "description": "岗位类别" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationtype/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": { "$ref": "#/components/schemas/ProfessionalStationType", "description": "岗位类别" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationtype/deleteById": { "post": { "summary": "通过id删除岗位类别", "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": { "$ref": "#/components/schemas/ProfessionalStationType", "description": "ProfessionalStationType" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationtype/getStationTypeList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalworktype/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "workName", "in": "query", "description": "工种名称", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalworktype/getById": { "get": { "summary": "通过id查询", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalworktype/add": { "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": { "$ref": "#/components/schemas/ProfessionalWorkType", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalworktype/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": { "$ref": "#/components/schemas/ProfessionalWorkType", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalworktype/deleteById": { "post": { "summary": "通过id删除", "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": { "$ref": "#/components/schemas/ProfessionalWorkType", "description": "等级工工种" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalworktype/getWorkTypeList": { "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationdutylevel/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "stationDutyLevelName", "in": "query", "description": "职务级别名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationdutylevel/getById": { "get": { "summary": "通过id查询岗位职务级别", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationdutylevel/add": { "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": { "$ref": "#/components/schemas/ProfessionalStationDutyLevel", "description": "岗位职务级别" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationdutylevel/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": { "$ref": "#/components/schemas/ProfessionalStationDutyLevel", "description": "岗位职务级别" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationdutylevel/deleteById": { "post": { "summary": "通过id删除岗位职务级别", "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": { "$ref": "#/components/schemas/ProfessionalStationDutyLevel", "description": "岗位职务级别" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationdutylevel/getStationDutyLevelList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopicsourceconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "sourceName", "in": "query", "description": "课题来源名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopicsourceconfig/getById": { "get": { "summary": "通过id查询课题来源配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopicsourceconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalTopicSourceConfig", "description": "课题来源配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopicsourceconfig/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": { "$ref": "#/components/schemas/ProfessionalTopicSourceConfig", "description": "课题来源配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopicsourceconfig/deleteById": { "post": { "summary": "通过id删除课题来源配置", "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": { "$ref": "#/components/schemas/ProfessionalTopicSourceConfig", "description": "ProfessionalTopicSourceConfig" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopicsourceconfig/getTopicSourceList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpoliticsstatus/add": { "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": { "$ref": "#/components/schemas/ProfessionalPoliticsStatus", "description": "教师政治面貌" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpoliticsstatus/deleteById": { "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": { "$ref": "#/components/schemas/ProfessionalPoliticsStatus", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachertype/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "typeName", "in": "query", "description": "类型名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachertype/getById": { "get": { "summary": "通过id查询教师类型", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachertype/add": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherType", "description": "教师类型" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachertype/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": { "$ref": "#/components/schemas/ProfessionalTeacherType", "description": "教师类型" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachertype/deleteById": { "post": { "summary": "通过id删除教师类型", "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": { "$ref": "#/components/schemas/ProfessionalTeacherType", "description": "教师类型" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachertype/getTeacherTypeList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademiceducationtypeconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "name", "in": "query", "description": "类型名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademiceducationtypeconfig/getById": { "get": { "summary": "通过id查询教育类型配置表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademiceducationtypeconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalAcademicEducationTypeConfig", "description": "教育类型配置表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademiceducationtypeconfig/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": { "$ref": "#/components/schemas/ProfessionalAcademicEducationTypeConfig", "description": "教育类型配置表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademiceducationtypeconfig/deleteById": { "post": { "summary": "通过id删除教育类型配置表", "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": { "$ref": "#/components/schemas/ProfessionalAcademicEducationTypeConfig", "description": "ProfessionalAcademicEducationTypeConfig" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademiceducationtypeconfig/getAllTypeList": { "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "schema": { "type": "string" } }, { "name": "name", "in": "query", "description": "课件名称", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "颁奖等级", "required": false, "schema": { "type": "string" } }, { "name": "unit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "awardTime", "in": "query", "description": "获奖时间", "required": false, "schema": { "type": "string" } }, { "name": "awardImg", "in": "query", "description": "获奖证书", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "state", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/staticPage": { "get": { "summary": "统计", "deprecated": false, "description": "", "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", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "schema": { "type": "string" } }, { "name": "name", "in": "query", "description": "课件名称", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "颁奖等级", "required": false, "schema": { "type": "string" } }, { "name": "unit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "awardTime", "in": "query", "description": "获奖时间", "required": false, "schema": { "type": "string" } }, { "name": "awardImg", "in": "query", "description": "获奖证书", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "state", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/getById": { "get": { "summary": "通过id查询获奖课件", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/add": { "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": { "$ref": "#/components/schemas/ProfessionalAwardCourseware", "description": "获奖课件" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/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": { "$ref": "#/components/schemas/ProfessionalAwardCourseware", "description": "获奖课件" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/deleteById": { "post": { "summary": "通过id删除获奖课件", "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": { "$ref": "#/components/schemas/ProfessionalAwardCourseware", "description": "获奖课件" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalawardcourseware/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalAwardCoursewareDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherhonor/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师工号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "职称配置ID", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "专业技术职务", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherhonor/getById": { "get": { "summary": "通过id查询综合表彰", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherhonor/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "综合表彰" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherhonor/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": { "$ref": "#/components/schemas/ProfessionalTeacherHonor", "description": "综合表彰" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteacherhonor/exam": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherHonor", "description": "综合表彰" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherhonor/deleteById": { "post": { "summary": "通过id删除综合表彰", "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": { "$ref": "#/components/schemas/ProfessionalTeacherHonor", "description": "ProfessionalTeacherHonor" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "paperConfigId", "in": "query", "description": "论文类型id", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "论文名称", "required": false, "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "schema": { "type": "string" } }, { "name": "secondAuthor", "in": "query", "description": "第二作者", "required": false, "schema": { "type": "string" } }, { "name": "nameOfPublication", "in": "query", "description": "发表刊物名称", "required": false, "schema": { "type": "string" } }, { "name": "dateOfPublication", "in": "query", "description": "发表日期", "required": false, "schema": { "type": "string" } }, { "name": "publicationsCompetentUnit", "in": "query", "description": "刊物主办单位", "required": false, "schema": { "type": "string" } }, { "name": "publicationsManageUnit", "in": "query", "description": "刊物主管单位", "required": false, "schema": { "type": "string" } }, { "name": "awardingUnit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "rewardLevel", "in": "query", "description": "获奖等级", "required": false, "schema": { "type": "string" } }, { "name": "rewardTime", "in": "query", "description": "获奖时间", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "knowdgeImg", "in": "query", "description": "知网 查验截图\n知网查验截图", "required": false, "schema": { "type": "string" } }, { "name": "pubCover", "in": "query", "description": "刊物封面", "required": false, "schema": { "type": "string" } }, { "name": "cateImg", "in": "query", "description": "目录页", "required": false, "schema": { "type": "string" } }, { "name": "contentImg", "in": "query", "description": "内容页", "required": false, "schema": { "type": "string" } }, { "name": "awardImg", "in": "query", "description": "获奖证书", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "backBy", "in": "query", "description": "驳回人", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "awardYear", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/staticsPage": { "get": { "summary": "统计", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "paperConfigId", "in": "query", "description": "论文类型id", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "论文名称", "required": false, "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "schema": { "type": "string" } }, { "name": "secondAuthor", "in": "query", "description": "第二作者", "required": false, "schema": { "type": "string" } }, { "name": "nameOfPublication", "in": "query", "description": "发表刊物名称", "required": false, "schema": { "type": "string" } }, { "name": "dateOfPublication", "in": "query", "description": "发表日期", "required": false, "schema": { "type": "string" } }, { "name": "publicationsCompetentUnit", "in": "query", "description": "刊物主办单位", "required": false, "schema": { "type": "string" } }, { "name": "publicationsManageUnit", "in": "query", "description": "刊物主管单位", "required": false, "schema": { "type": "string" } }, { "name": "awardingUnit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "rewardLevel", "in": "query", "description": "获奖等级", "required": false, "schema": { "type": "string" } }, { "name": "rewardTime", "in": "query", "description": "获奖时间", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "knowdgeImg", "in": "query", "description": "知网 查验截图\n知网查验截图", "required": false, "schema": { "type": "string" } }, { "name": "pubCover", "in": "query", "description": "刊物封面", "required": false, "schema": { "type": "string" } }, { "name": "cateImg", "in": "query", "description": "目录页", "required": false, "schema": { "type": "string" } }, { "name": "contentImg", "in": "query", "description": "内容页", "required": false, "schema": { "type": "string" } }, { "name": "awardImg", "in": "query", "description": "获奖证书", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "backBy", "in": "query", "description": "驳回人", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "awardYear", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/getById": { "get": { "summary": "通过id查询教师论文", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/add": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherPaper", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/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": { "$ref": "#/components/schemas/ProfessionalTeacherPaper", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherPaperDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherpaper/deleteById": { "post": { "summary": "通过id删除教师论文", "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": { "$ref": "#/components/schemas/ProfessionalTeacherPaper", "description": "教师论文" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationrelation/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "职称配置ID", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "专业技术职务", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationrelation/getById": { "get": { "summary": "通过id查询人事职业资格人员关联表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationrelation/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "人事职业资格人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationrelation/exam": { "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": { "$ref": "#/components/schemas/ProfessionalQualificationRelation", "description": "人事职业资格人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationrelation/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": { "$ref": "#/components/schemas/ProfessionalQualificationRelation", "description": "人事职业资格人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalqualificationrelation/deleteById": { "post": { "summary": "通过id删除人事职业资格人员关联表", "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": { "$ref": "#/components/schemas/ProfessionalQualificationRelation", "description": "人事职业资格人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalsocial/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "title", "in": "query", "description": "称谓", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "birthday", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "politicsStatusId", "in": "query", "description": "政治面貌", "required": false, "schema": { "type": "string" } }, { "name": "workStation", "in": "query", "description": "工作单位及职务", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师编号", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalsocial/getById": { "get": { "summary": "通过id查询社会关系", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalsocial/add": { "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": { "$ref": "#/components/schemas/ProfessionalSocial", "description": "社会关系" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalsocial/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": { "$ref": "#/components/schemas/ProfessionalSocial", "description": "社会关系" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalsocial/deleteById": { "post": { "summary": "通过id删除社会关系", "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": { "$ref": "#/components/schemas/ProfessionalSocial", "description": "社会关系" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalmajorstation/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "majorStationName", "in": "query", "description": "专业技术职务名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalmajorstation/getById": { "get": { "summary": "通过id查询专业技术职务", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalmajorstation/add": { "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": { "$ref": "#/components/schemas/ProfessionalMajorStation", "description": "专业技术职务" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalmajorstation/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": { "$ref": "#/components/schemas/ProfessionalMajorStation", "description": "专业技术职务" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalmajorstation/deleteById": { "post": { "summary": "通过id删除专业技术职务", "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": { "$ref": "#/components/schemas/ProfessionalMajorStation", "description": "专业技术职务" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalmajorstation/getMajorStationList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/getById": { "get": { "summary": "通过id查询人事职称人员关联表,一人可以有多个职称", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "人事职称人员关联表,一人可以有多个职称" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/exam": { "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": { "$ref": "#/components/schemas/ProfessionalTitleRelation", "description": "人事职称人员关联表,一人可以有多个职称" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/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": { "$ref": "#/components/schemas/ProfessionalTitleRelation", "description": "人事职称人员关联表,一人可以有多个职称" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/deleteById": { "post": { "summary": "通过id删除人事职称人员关联表,一人可以有多个职称", "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": { "$ref": "#/components/schemas/ProfessionalTitleRelation", "description": "人事职称人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlerelation/getTitleStationForInner/{teacherNo}": { "get": { "summary": "获取职称", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteacheracademicrelation/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师工号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "职称配置ID", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "专业技术职务", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacheracademicrelation/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacheracademicrelation/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": { "$ref": "#/components/schemas/ProfessionalTeacherAcademicRelation", "description": "教师的学历学位关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteacheracademicrelation/exam": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherAcademicRelation", "description": "教师的学历学位关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacheracademicrelation/deleteById": { "post": { "summary": "通过id删除教师的学历学位关联表", "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": { "$ref": "#/components/schemas/ProfessionalTeacherAcademicRelation", "description": "教师的学历学位关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpartybranch/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "编号", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "name", "in": "query", "description": "类别名字", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注信息", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpartybranch/getById": { "get": { "summary": "通过id查询党支部", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpartybranch/add": { "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": { "$ref": "#/components/schemas/ProfessionalPartyBranch", "description": "党支部" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpartybranch/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": { "$ref": "#/components/schemas/ProfessionalPartyBranch", "description": "党支部" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpartybranch/deleteById": { "post": { "summary": "通过id删除党支部", "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": { "$ref": "#/components/schemas/ProfessionalPartyBranch", "description": "ProfessionalPartyBranch" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherstationchange/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师工号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "职称配置ID", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "专业技术职务", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherstationchange/getById": { "get": { "summary": "通过id查询教职工岗位变更记录表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteacherstationchange/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "教职工岗位变更记录表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherstationchange/print": { "get": { "summary": "打印调令", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": true, "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": [] } }, "/professionalteacherstationchange/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": { "$ref": "#/components/schemas/ProfessionalTeacherStationChange", "description": "教职工岗位变更记录表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteacherstationchange/deleteById": { "post": { "summary": "通过id删除教职工岗位变更记录表", "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": { "$ref": "#/components/schemas/ProfessionalTeacherStationChange", "description": "ProfessionalTeacherStationChange" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteacherstationchange/print/{id}": { "get": { "summary": "打印调令", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": true, "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": [] } }, "/professionalteacherstationchange/addd": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionaltitlelevelconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "professionalTitle", "in": "query", "description": "职称等级名称", "required": false, "schema": { "type": "string" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/getById": { "get": { "summary": "通过id查询人事模块-职称等级配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalTitleLevelConfig", "description": "人事模块-职称等级配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/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": { "$ref": "#/components/schemas/ProfessionalTitleLevelConfig", "description": "人事模块-职称等级配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/deleteById": { "post": { "summary": "通过id删除人事模块-职称等级配置", "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": { "$ref": "#/components/schemas/ProfessionalTitleLevelConfig", "description": "人事模块-职称等级配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/getProfessionalTitleList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/getTitle/{id}": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltitlelevelconfig/list": { "get": { "summary": "外部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "professionalTitle", "in": "query", "description": "职称等级名称", "required": false, "schema": { "type": "string" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "levelName", "in": "query", "description": "等级名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationconfig/getById": { "get": { "summary": "通过id查询人事职业资格等级配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalQualificationConfig", "description": "人事职业资格等级配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationconfig/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": { "$ref": "#/components/schemas/ProfessionalQualificationConfig", "description": "人事职业资格等级配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationconfig/deleteById": { "post": { "summary": "通过id删除人事职业资格等级配置", "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": { "$ref": "#/components/schemas/ProfessionalQualificationConfig", "description": "人事职业资格等级配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalqualificationconfig/getLevelList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalemploymentnature/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "employmentNatureName", "in": "query", "description": "用工性质名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalemploymentnature/getById": { "get": { "summary": "通过id查询用工性质", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalemploymentnature/add": { "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": { "$ref": "#/components/schemas/ProfessionalEmploymentNature", "description": "用工性质" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalemploymentnature/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": { "$ref": "#/components/schemas/ProfessionalEmploymentNature", "description": "用工性质" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalemploymentnature/deleteById": { "post": { "summary": "通过id删除用工性质", "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": { "$ref": "#/components/schemas/ProfessionalEmploymentNature", "description": "用工性质" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalemploymentnature/getEmploymentNatureList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpaperconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户ID", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "typeName", "in": "query", "description": "论文类型名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpaperconfig/getById": { "get": { "summary": "通过id查询论文类型配置表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpaperconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalPaperConfig", "description": "论文类型配置表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpaperconfig/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": { "$ref": "#/components/schemas/ProfessionalPaperConfig", "description": "论文类型配置表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpaperconfig/deleteById": { "post": { "summary": "通过id删除论文类型配置表", "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": { "$ref": "#/components/schemas/ProfessionalPaperConfig", "description": "论文类型配置表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpaperconfig/getPaperConfigList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificateconf/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "cretificateName", "in": "query", "description": "资格证名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificateconf/getById": { "get": { "summary": "通过id查询教师资格证书配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificateconf/add": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherCertificateConf", "description": "教师资格证书配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificateconf/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": { "$ref": "#/components/schemas/ProfessionalTeacherCertificateConf", "description": "教师资格证书配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificateconf/deleteById": { "post": { "summary": "通过id删除教师资格证书配置", "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": { "$ref": "#/components/schemas/ProfessionalTeacherCertificateConf", "description": "ProfessionalTeacherCertificateConf" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificateconf/getTeacherCertificateList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterialconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "typeName", "in": "query", "description": "类型名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterialconfig/getById": { "get": { "summary": "通过id查询教材类别配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterialconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterialConfig", "description": "教材类别配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterialconfig/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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterialConfig", "description": "教材类别配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterialconfig/deleteById": { "post": { "summary": "通过id删除教材类别配置", "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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterialConfig", "description": "ProfessionalTeachingMaterialConfig" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterialconfig/getTeachingMaterialList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "deptCode", "in": "query", "description": "部门", "required": false, "schema": { "type": "string" } }, { "name": "materialName", "in": "query", "description": "教材名称", "required": false, "schema": { "type": "string" } }, { "name": "materialConfigId", "in": "query", "description": "教材类别配置id", "required": false, "schema": { "type": "string" } }, { "name": "editor", "in": "query", "description": "主编", "required": false, "schema": { "type": "string" } }, { "name": "secondEditor", "in": "query", "description": "副主编", "required": false, "schema": { "type": "string" } }, { "name": "joinEditor", "in": "query", "description": "参编", "required": false, "schema": { "type": "string" } }, { "name": "words", "in": "query", "description": "编写字数 千字\n编写字数", "required": false, "schema": { "type": "integer" } }, { "name": "publishCompany", "in": "query", "description": "出版单位", "required": false, "schema": { "type": "string" } }, { "name": "publishTime", "in": "query", "description": "出版时间", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "mateCover", "in": "query", "description": "教材封面", "required": false, "schema": { "type": "string" } }, { "name": "pubImg", "in": "query", "description": "出版图片", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "backBy", "in": "query", "description": "驳回人", "required": false, "schema": { "type": "string" } }, { "name": "isbn", "in": "query", "description": "ISBN", "required": false, "schema": { "type": "string" } }, { "name": "versionDate", "in": "query", "description": "班次日期\n版本日期", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/checkTitle": { "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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterialDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/staticsPage": { "get": { "summary": "统计", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "deptCode", "in": "query", "description": "部门", "required": false, "schema": { "type": "string" } }, { "name": "materialName", "in": "query", "description": "教材名称", "required": false, "schema": { "type": "string" } }, { "name": "materialConfigId", "in": "query", "description": "教材类别配置id", "required": false, "schema": { "type": "string" } }, { "name": "editor", "in": "query", "description": "主编", "required": false, "schema": { "type": "string" } }, { "name": "secondEditor", "in": "query", "description": "副主编", "required": false, "schema": { "type": "string" } }, { "name": "joinEditor", "in": "query", "description": "参编", "required": false, "schema": { "type": "string" } }, { "name": "words", "in": "query", "description": "编写字数 千字\n编写字数", "required": false, "schema": { "type": "integer" } }, { "name": "publishCompany", "in": "query", "description": "出版单位", "required": false, "schema": { "type": "string" } }, { "name": "publishTime", "in": "query", "description": "出版时间", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "mateCover", "in": "query", "description": "教材封面", "required": false, "schema": { "type": "string" } }, { "name": "pubImg", "in": "query", "description": "出版图片", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "backBy", "in": "query", "description": "驳回人", "required": false, "schema": { "type": "string" } }, { "name": "isbn", "in": "query", "description": "ISBN", "required": false, "schema": { "type": "string" } }, { "name": "versionDate", "in": "query", "description": "班次日期\n版本日期", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/getById": { "get": { "summary": "通过id查询教材", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/add": { "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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterial", "description": "教材" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterial", "description": "教材" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterialDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachingmaterial/deleteById": { "post": { "summary": "通过id删除教材", "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": { "$ref": "#/components/schemas/ProfessionalTeachingMaterial", "description": "教材" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclist/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "deptCode", "in": "query", "description": "课题所属部门", "required": false, "schema": { "type": "string" } }, { "name": "topicName", "in": "query", "description": "课题名称", "required": false, "schema": { "type": "string" } }, { "name": "topicLeader", "in": "query", "description": "课题负责人", "required": false, "schema": { "type": "string" } }, { "name": "topicJoiner", "in": "query", "description": "课题参与人", "required": false, "schema": { "type": "string" } }, { "name": "topicSourceConfigId", "in": "query", "description": "课题来源配置id", "required": false, "schema": { "type": "string" } }, { "name": "topicLevelConfigId", "in": "query", "description": "课题级别配置id", "required": false, "schema": { "type": "string" } }, { "name": "finishTime", "in": "query", "description": "结题时间", "required": false, "schema": { "type": "string" } }, { "name": "awardingUnit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "awardingLevel", "in": "query", "description": "获奖等级", "required": false, "schema": { "type": "string" } }, { "name": "otherImg", "in": "query", "description": "其他资料", "required": false, "schema": { "type": "string" } }, { "name": "conclusionBook", "in": "query", "description": "结题证书", "required": false, "schema": { "type": "string" } }, { "name": "conclusionReport", "in": "query", "description": "结题报告", "required": false, "schema": { "type": "string" } }, { "name": "projectApp", "in": "query", "description": "立项申报书", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "backBy", "in": "query", "description": "驳回人", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "realName", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclist/getById": { "get": { "summary": "通过id查询课题列表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclist/add": { "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": { "$ref": "#/components/schemas/ProfessionalTopicList", "description": "课题列表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclist/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": { "$ref": "#/components/schemas/ProfessionalTopicList", "description": "课题列表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclist/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalTopicListDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclist/deleteById": { "post": { "summary": "通过id删除课题列表", "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": { "$ref": "#/components/schemas/ProfessionalTopicList", "description": "ProfessionalTopicList" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "schema": { "type": "string" } }, { "name": "name", "in": "query", "description": "教案名称", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "颁奖等级", "required": false, "schema": { "type": "string" } }, { "name": "unit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "awardTime", "in": "query", "description": "获奖时间", "required": false, "schema": { "type": "string" } }, { "name": "awardImg", "in": "query", "description": "获奖证书", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "state", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/staticPage": { "get": { "summary": "统计", "deprecated": false, "description": "", "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", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "author", "in": "query", "description": "作者", "required": false, "schema": { "type": "string" } }, { "name": "name", "in": "query", "description": "教案名称", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "颁奖等级", "required": false, "schema": { "type": "string" } }, { "name": "unit", "in": "query", "description": "颁奖单位", "required": false, "schema": { "type": "string" } }, { "name": "awardTime", "in": "query", "description": "获奖时间", "required": false, "schema": { "type": "string" } }, { "name": "awardImg", "in": "query", "description": "获奖证书", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "state", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/getById": { "get": { "summary": "通过id查询获奖教案", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/add": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherLesson", "description": "获奖教案" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/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": { "$ref": "#/components/schemas/ProfessionalTeacherLesson", "description": "获奖教案" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/deleteById": { "post": { "summary": "通过id删除获奖教案", "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": { "$ref": "#/components/schemas/ProfessionalTeacherLesson", "description": "获奖教案" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteacherlesson/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherLessonDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationlevelconfig/getStationLevelList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstationrelation/getStationForInner/{teacherNo}": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "teacherNo", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclevelconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "levelName", "in": "query", "description": "课题等级名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclevelconfig/getById": { "get": { "summary": "通过id查询课题级别配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclevelconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalTopicLevelConfig", "description": "课题级别配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclevelconfig/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": { "$ref": "#/components/schemas/ProfessionalTopicLevelConfig", "description": "课题级别配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclevelconfig/deleteById": { "post": { "summary": "通过id删除课题级别配置", "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": { "$ref": "#/components/schemas/ProfessionalTopicLevelConfig", "description": "ProfessionalTopicLevelConfig" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionaltopiclevelconfig/getTopicLevelList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "firAuthor", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "firAuthorName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "belongPeople", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "belongPeopleName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "patentNo", "in": "query", "description": "专利号", "required": false, "schema": { "type": "string" } }, { "name": "cardNo", "in": "query", "description": "证书号", "required": false, "schema": { "type": "string" } }, { "name": "authTime", "in": "query", "description": "授权时间", "required": false, "schema": { "type": "string" } }, { "name": "materialUrl", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/staticPage": { "get": { "summary": "统计接口", "deprecated": false, "description": "", "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", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "deptName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "firAuthor", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "firAuthorName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "belongPeople", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "belongPeopleName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "patentNo", "in": "query", "description": "专利号", "required": false, "schema": { "type": "string" } }, { "name": "cardNo", "in": "query", "description": "证书号", "required": false, "schema": { "type": "string" } }, { "name": "authTime", "in": "query", "description": "授权时间", "required": false, "schema": { "type": "string" } }, { "name": "materialUrl", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回理由", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "examType", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/getById": { "get": { "summary": "通过id查询专利", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/add": { "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": { "$ref": "#/components/schemas/ProfessionalPatent", "description": "专利" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/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": { "$ref": "#/components/schemas/ProfessionalPatent", "description": "专利" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalPatentDTO", "description": "专利" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalpatent/deleteById": { "post": { "summary": "通过id删除专利", "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": { "$ref": "#/components/schemas/ProfessionalPatent", "description": "专利" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademicdegreeconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "degreeName", "in": "query", "description": "学位名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademicdegreeconfig/getById": { "get": { "summary": "通过id查询学位配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademicdegreeconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalAcademicDegreeConfig", "description": "学位配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademicdegreeconfig/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": { "$ref": "#/components/schemas/ProfessionalAcademicDegreeConfig", "description": "学位配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademicdegreeconfig/deleteById": { "post": { "summary": "通过id删除学位配置", "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": { "$ref": "#/components/schemas/ProfessionalAcademicDegreeConfig", "description": "学位配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalacademicdegreeconfig/getDegreeList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalatstation/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "atStationName", "in": "query", "description": "类型名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalatstation/getById": { "get": { "summary": "通过id查询在职情况", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalatstation/add": { "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": { "$ref": "#/components/schemas/ProfessionalAtStation", "description": "在职情况" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalatstation/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": { "$ref": "#/components/schemas/ProfessionalAtStation", "description": "在职情况" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalatstation/deleteById": { "post": { "summary": "通过id删除在职情况", "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": { "$ref": "#/components/schemas/ProfessionalAtStation", "description": "在职情况" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalatstation/getAtStationList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificaterelation/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "教师工号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "职称配置ID", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "专业技术职务", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificaterelation/getById": { "get": { "summary": "通过id查询教师资格证人员关联表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificaterelation/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "教师资格证人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificaterelation/exam": { "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": { "$ref": "#/components/schemas/ProfessionalTeacherCertificateRelation", "description": "教师资格证人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalteachercertificaterelation/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": { "$ref": "#/components/schemas/ProfessionalTeacherCertificateRelation", "description": "教师资格证人员关联表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/professionalteachercertificaterelation/deleteById": { "post": { "summary": "通过id删除教师资格证人员关联表", "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": { "$ref": "#/components/schemas/ProfessionalTeacherCertificateRelation", "description": "ProfessionalTeacherCertificateRelation" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "8": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "9": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "10": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/professionalstatuslock/getAllStatusList": { "get": { "summary": "查询所有状态锁定信息", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "statusName", "in": "query", "description": "状态名", "required": false, "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "0 未锁定 1已锁定\n状态", "required": false, "schema": { "type": "string" } }, { "name": "statusCode", "in": "query", "description": "状态码", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalstatuslock/updateStatus": { "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": { "$ref": "#/components/schemas/ProfessionalStatusLockDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalstatuslock/checkLocked/{statusCode}": { "get": { "summary": "验证是否锁定", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "statusCode", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalpartychange/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "state", "in": "query", "description": "状态", "required": false, "schema": { "type": "string" } }, { "name": "professionalTitleConfigId", "in": "query", "description": "职称配置ID", "required": false, "schema": { "type": "string" } }, { "name": "majorStation", "in": "query", "description": "专业技术职务", "required": false, "schema": { "type": "string" } }, { "name": "scopeQueryType", "in": "query", "description": "学历", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalpartychange/add": { "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": { "$ref": "#/components/schemas/TeacherAboutInfoDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalStatics/statics": { "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": { "$ref": "#/components/schemas/ScienceStaticDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "example": { "ok": false, "code": null, "msg": "", "data": {} } } } } }, "security": [] } }, "/professionalStatics/exportData": { "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": { "$ref": "#/components/schemas/ScienceStaticDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } } } }, "security": [] } }, "/academicqualificationsconfig/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "qualificationName", "in": "query", "description": "学历名称", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/academicqualificationsconfig/getById": { "get": { "summary": "通过id查询人事模块-学历配置", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/academicqualificationsconfig/add": { "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": { "$ref": "#/components/schemas/ProfessionalAcademicQualificationsConfig", "description": "人事模块-学历配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/academicqualificationsconfig/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": { "$ref": "#/components/schemas/ProfessionalAcademicQualificationsConfig", "description": "人事模块-学历配置" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/academicqualificationsconfig/deleteById": { "post": { "summary": "通过id删除人事模块-学历配置", "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": { "$ref": "#/components/schemas/ProfessionalAcademicQualificationsConfig", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/academicqualificationsconfig/getQualificationList": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "6": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "7": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencechangehistory/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "reportId", "in": "query", "description": "科研id", "required": false, "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "变更类型 1 课题名称 2 课题成员 3 结束时间\n变更类型", "required": false, "schema": { "type": "string" } }, { "name": "originContent", "in": "query", "description": "原始内容", "required": false, "schema": { "type": "string" } }, { "name": "newContent", "in": "query", "description": "变更后内容", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "passTime", "in": "query", "description": "审核通过时间", "required": false, "schema": { "type": "string" } }, { "name": "dealState", "in": "query", "description": "0 待审核 1 部门审核 2 科研处审核 100 通过 -1 驳回\n处理状态", "required": false, "schema": { "type": "string" } }, { "name": "materialUrl", "in": "query", "description": "签字文件", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "驳回内容", "required": false, "schema": { "type": "string" } }, { "name": "checkStatus", "in": "query", "description": "签字确认状态 0 待确认 1 通过 -1 驳回\n签字确认状态", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencechangehistory/{reportId}": { "get": { "summary": "通过id查询课题变更明细", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "reportId", "in": "path", "description": "reportId", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencechangehistory/queryHistoryData/{id}": { "get": { "summary": "通过id查询课题变更明细", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencechangehistory": { "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": { "$ref": "#/components/schemas/ChangeHistoryDTO", "description": "课题变更明细" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] }, "put": { "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": { "$ref": "#/components/schemas/ChangeHistoryDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencechangehistory/uploadMaterial": { "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": { "$ref": "#/components/schemas/ScienceChangeHistory", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencechangehistory/{id}": { "delete": { "summary": "删除变更记录", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/file/teacherAboutInfoUpload": { "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": { "multipart/form-data": { "schema": { "type": "object", "properties": { "file": { "description": "学历", "type": "string", "format": "binary" } }, "required": [ "file" ] } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R(bucketName, filename)" }, "example": { "ok": false, "code": null, "msg": null, "data": null } } } } }, "security": [] } }, "/file/acadeShow": { "get": { "summary": "教职工材料信息", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "fileName", "in": "query", "description": "", "required": false, "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": [] } }, "/file/showPdf": { "get": { "summary": "图片展示接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "fileName", "in": "query", "description": "", "required": false, "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": [] } }, "/outercompanyemployee/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "companyId", "in": "query", "description": "公司ID", "required": false, "schema": { "type": "string" } }, { "name": "companyName", "in": "query", "description": "公司名称", "required": false, "schema": { "type": "string" } }, { "name": "employeeNo", "in": "query", "description": "职员编号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证", "required": false, "schema": { "type": "string" } }, { "name": "mobile", "in": "query", "description": "手机号", "required": false, "schema": { "type": "string" } }, { "name": "position", "in": "query", "description": "职位", "required": false, "schema": { "type": "string" } }, { "name": "address", "in": "query", "description": "地址", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否可进出 1:是 0: 否\n是否可进出", "required": false, "schema": { "type": "string" } }, { "name": "companyType", "in": "query", "description": "单位类型", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "所属学院", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/getById": { "get": { "summary": "通过id查询校外单位职员", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/add": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "校外单位职员" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/saveSecond": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "校外单位职员" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/resetPassWord": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/deleteById": { "post": { "summary": "通过id删除校外单位职员", "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/batchDel": { "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": "array", "items": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "校外单位职员" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/list/face": { "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": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/getByEmployeeNo/{employeeNo}": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "employeeNo", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/getByEmployeeByInfo/{info}": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "info", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/count": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/listByCompany/{companyId}": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "companyId", "in": "path", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/listByCompanyId": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "companyId", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/switchInOut": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployeeSwitchDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/getCompany": { "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": { "$ref": "#/components/schemas/OuterCompany", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/getEmployeeNum": { "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" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/resetPwd": { "get": { "summary": "外部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "token", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/getEmployeeByCompany": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "type", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployeeByIdcard": { "get": { "summary": "内部接口-校验是否本校驻校人员(排除外聘教师单位)", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "idCard", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployeeNoByIdcard": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "idCard", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/RString" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } } } } } } }, "security": [] } }, "/outercompanyemployee/getEmployeeByIds": { "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": { "$ref": "#/components/schemas/OuterCompanyDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListDeptTeacherListVO" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "commonDeptCode": "", "deptName": "", "totalNum": 0, "teacherNoList": [ "" ], "teacherNos": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployInfoByNos": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/queryNoKnowExamEmployList": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/getByCondition": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployeeDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/getUserList": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployeeDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployeeListByComType": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployeeInfoByNo": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "employeeNo", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/ROuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployeeInfoByNoList": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompanyEmployee" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } ] } } } } } } }, "security": [] } }, "/outercompanyemployee/queryCompanyVisitorBy": { "get": { "summary": "内部接口-校验驻校单位访客受访人 是否存在", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "phone", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/ROuterCompanyEmployee", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyId": "", "companyName": "", "employeeNo": "", "realName": "", "idCard": "", "mobile": "", "position": "", "address": "", "inoutFlag": "", "companyType": "", "deptCode": "" } } } } } } } }, "security": [] } }, "/outercompanyemployee/remoteInfo": { "get": { "summary": "模糊检索人员信息", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "info", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/remoteAddCompanyEmployee": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/queryEmployTeacher": { "get": { "summary": "查询外聘教师", "deprecated": false, "description": "/**\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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "companyId", "in": "query", "description": "公司ID", "required": false, "schema": { "type": "string" } }, { "name": "companyName", "in": "query", "description": "公司名称", "required": false, "schema": { "type": "string" } }, { "name": "employeeNo", "in": "query", "description": "职员编号", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证", "required": false, "schema": { "type": "string" } }, { "name": "mobile", "in": "query", "description": "手机号", "required": false, "schema": { "type": "string" } }, { "name": "position", "in": "query", "description": "职位", "required": false, "schema": { "type": "string" } }, { "name": "address", "in": "query", "description": "地址", "required": false, "schema": { "type": "string" } }, { "name": "inoutFlag", "in": "query", "description": "是否可进出 1:是 0: 否\n是否可进出", "required": false, "schema": { "type": "string" } }, { "name": "companyType", "in": "query", "description": "单位类型", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "所属学院", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/addEmployTeacher": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/delEmployTeacher": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/editEmployTeacher": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/remoteEmployTeacherInfoByNo": { "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": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompanyemployee/remoteWpTeacherList": { "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": "array", "items": { "type": "string" }, "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/salaryexportrecord/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "confirm", "in": "query", "description": "确认导出薪资国税报税", "required": false, "schema": { "type": "string" } }, { "name": "exportDate", "in": "query", "description": "导出日期", "required": false, "schema": { "type": "string" } }, { "name": "salaryYear", "in": "query", "description": "薪资年份", "required": false, "schema": { "type": "integer" } }, { "name": "salaryMonth", "in": "query", "description": "薪资月份", "required": false, "schema": { "type": "integer" } }, { "name": "tenantId", "in": "query", "description": "租户ID", "required": false, "schema": { "type": "integer" } }, { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/salaryexportrecord/{id}": { "get": { "summary": "通过id查询薪资导出记录表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] }, "delete": { "summary": "通过id删除薪资导出记录表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/salaryexportrecord": { "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": { "$ref": "#/components/schemas/SalaryExportRecord", "description": "薪资导出记录表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] }, "put": { "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": { "$ref": "#/components/schemas/SalaryExportRecord", "description": "薪资导出记录表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/salaryexportrecord/checkSalaryDate": { "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": { "$ref": "#/components/schemas/SalaryExportRecord", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RBoolean", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } } } } } } }, "security": [] } }, "/salaryexportrecord/queryMaxYearAndMonth": { "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": { "$ref": "#/components/schemas/SalaryExportRecord", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RSalaryExportRecord", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "confirm": "", "exportDate": "", "salaryYear": 0, "salaryMonth": 0, "tenantId": 0 } } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "confirm": "", "exportDate": "", "salaryYear": 0, "salaryMonth": 0, "tenantId": 0 } } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "confirm": "", "exportDate": "", "salaryYear": 0, "salaryMonth": 0, "tenantId": 0 } } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "confirm": "", "exportDate": "", "salaryYear": 0, "salaryMonth": 0, "tenantId": 0 } } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "confirm": "", "exportDate": "", "salaryYear": 0, "salaryMonth": 0, "tenantId": 0 } } } } } } } }, "security": [] } }, "/scienceEndCheck/{id}": { "get": { "summary": "通过id查询课题结题鉴定", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/scienceEndCheck": { "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": { "$ref": "#/components/schemas/ScienceEndCheck", "description": "课题结题鉴定" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/scienceEndCheck/subMidCheck": { "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": { "$ref": "#/components/schemas/ScienceEndCheck", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "companyName", "in": "query", "description": "公司名称", "required": false, "schema": { "type": "string" } }, { "name": "allowStartTime", "in": "query", "description": "单位允许进出的时段(开始)", "required": false, "schema": { "type": "string" } }, { "name": "allowEndTime", "in": "query", "description": "单位允许进出的时段(结束)", "required": false, "schema": { "type": "string" } }, { "name": "companyType", "in": "query", "description": "单位类型 0: 驻校单位 1: 培训单位\n单位类型", "required": false, "schema": { "type": "string" } }, { "name": "userName", "in": "query", "description": "健康申报-管理员", "required": false, "schema": { "type": "string" } }, { "name": "trainClassId", "in": "query", "description": "关联 培训班级Id\n关联培训班级Id", "required": false, "schema": { "type": "string" } }, { "name": "isSpecial", "in": "query", "description": "外聘 驻校单位 不允许删除\n外聘驻校单位不允许删除", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/getById": { "get": { "summary": "通过id查询校外单位", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/add": { "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": { "$ref": "#/components/schemas/OuterCompanyDTO", "description": "校外单位" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/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": { "$ref": "#/components/schemas/OuterCompany", "description": "校外单位" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/deleteById": { "post": { "summary": "通过id删除校外单位", "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": { "$ref": "#/components/schemas/OuterCompany", "description": "id" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/getList": { "get": { "summary": "通用获取驻校单位", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "sort", "in": "query", "description": "排序", "required": false, "schema": { "type": "integer" } }, { "name": "companyName", "in": "query", "description": "公司名称", "required": false, "schema": { "type": "string" } }, { "name": "allowStartTime", "in": "query", "description": "单位允许进出的时段(开始)", "required": false, "schema": { "type": "string" } }, { "name": "allowEndTime", "in": "query", "description": "单位允许进出的时段(结束)", "required": false, "schema": { "type": "string" } }, { "name": "companyType", "in": "query", "description": "单位类型 0: 驻校单位 1: 培训单位\n单位类型", "required": false, "schema": { "type": "string" } }, { "name": "userName", "in": "query", "description": "健康申报-管理员", "required": false, "schema": { "type": "string" } }, { "name": "trainClassId", "in": "query", "description": "关联 培训班级Id\n关联培训班级Id", "required": false, "schema": { "type": "string" } }, { "name": "isSpecial", "in": "query", "description": "外聘 驻校单位 不允许删除\n外聘驻校单位不允许删除", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/getByCondition": { "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": { "$ref": "#/components/schemas/OuterCompanyDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RListOuterCompany", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } ] } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } ] } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } ] } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } ] } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": [ { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } ] } } } } } } }, "security": [] } }, "/outercompany/getCompanyByEmp": { "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": { "$ref": "#/components/schemas/OuterCompanyDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ROuterCompany", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": { "id": "", "createBy": "", "createTime": "", "updateBy": "", "updateTime": "", "delFlag": "", "remarks": "", "tenantId": 0, "sort": 0, "companyName": "", "allowStartTime": "", "allowEndTime": "", "companyType": "", "userName": "", "trainClassId": "", "isSpecial": "" } } } } } } } }, "security": [] } }, "/outercompany/fetchCompany": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/remoteAddCompany": { "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": { "$ref": "#/components/schemas/RemoteAddCompanyDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RString", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": "" } } } } } } }, "security": [] } }, "/outercompany/modifyTrainCompany": { "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": { "$ref": "#/components/schemas/RemoteAddCompanyDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RBoolean", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } } } } } } }, "security": [] } }, "/outercompany/removeCompanyAndPeopleInfo": { "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": { "$ref": "#/components/schemas/RemoteAddCompanyDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RBoolean", "description": "" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": false } } } } } } }, "security": [] } }, "/outercompany/getByIdForInner/{id}": { "get": { "summary": "内部接口", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/outercompany/traineeSendMsg": { "post": { "summary": "内部接口", "deprecated": false, "description": "仅给quartz调用", "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": { "$ref": "#/components/schemas/OuterCompany", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } } } }, "security": [] } }, "/professionalcommon/batchSetTopFlag": { "post": { "summary": "批量设置最高标记", "deprecated": false, "description": "批量设置最高标记\n批量设置最高标记\n批量设置职称、职业资格、学历学位、教师资格证的最高标记", "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": { "$ref": "#/components/schemas/RVoid" }, "examples": { "1": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "2": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "3": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "4": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } }, "5": { "summary": "成功示例", "value": { "code": 0, "msg": "", "data": null } } } } } } }, "security": [] } }, "/teachersalary/checkAuth": { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teachersalary/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "编号", "required": false, "schema": { "type": "string" } }, { "name": "userName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "postSalary", "in": "query", "description": "岗位工资", "required": false, "schema": { "type": "string" } }, { "name": "payWage", "in": "query", "description": "薪级工资", "required": false, "schema": { "type": "string" } }, { "name": "studentPay", "in": "query", "description": "见习期工资", "required": false, "schema": { "type": "string" } }, { "name": "liveAllowance", "in": "query", "description": "生活补贴", "required": false, "schema": { "type": "string" } }, { "name": "postAllowance", "in": "query", "description": "岗位津贴", "required": false, "schema": { "type": "string" } }, { "name": "houseSubsidies", "in": "query", "description": "住房(租金)补贴", "required": false, "schema": { "type": "string" } }, { "name": "newHouseSubsidies", "in": "query", "description": "新职工住房补贴", "required": false, "schema": { "type": "string" } }, { "name": "huiSubsidies", "in": "query", "description": "回民补贴", "required": false, "schema": { "type": "string" } }, { "name": "oldSubsidies", "in": "query", "description": "养老保险补贴", "required": false, "schema": { "type": "string" } }, { "name": "ageAllowance", "in": "query", "description": "教龄津贴", "required": false, "schema": { "type": "string" } }, { "name": "specialSubsidies", "in": "query", "description": "特教补贴", "required": false, "schema": { "type": "string" } }, { "name": "teacherAllowance", "in": "query", "description": "特级教师津贴", "required": false, "schema": { "type": "string" } }, { "name": "sPostAllowance1", "in": "query", "description": "特岗津贴(一)", "required": false, "schema": { "type": "string" } }, { "name": "sPostAllowance2", "in": "query", "description": "特岗津贴(二)", "required": false, "schema": { "type": "string" } }, { "name": "other", "in": "query", "description": "其他", "required": false, "schema": { "type": "string" } }, { "name": "meritPay", "in": "query", "description": "奖励性绩效工资", "required": false, "schema": { "type": "string" } }, { "name": "villageSubsidies", "in": "query", "description": "乡镇工作补贴", "required": false, "schema": { "type": "string" } }, { "name": "temporarySubsidies", "in": "query", "description": "临时性补贴", "required": false, "schema": { "type": "string" } }, { "name": "trafficSubsidies", "in": "query", "description": "上下班交通补贴", "required": false, "schema": { "type": "string" } }, { "name": "keepAllowance", "in": "query", "description": "保留津贴", "required": false, "schema": { "type": "string" } }, { "name": "retroactivePay", "in": "query", "description": "补发工资", "required": false, "schema": { "type": "string" } }, { "name": "shouldPay", "in": "query", "description": "应发工资", "required": false, "schema": { "type": "string" } }, { "name": "houseFund", "in": "query", "description": "住房公积金", "required": false, "schema": { "type": "string" } }, { "name": "medicalInsurance", "in": "query", "description": "医疗保险金", "required": false, "schema": { "type": "string" } }, { "name": "unemployInsurance", "in": "query", "description": "失业保险金", "required": false, "schema": { "type": "string" } }, { "name": "endowInsurance", "in": "query", "description": "养老保险金", "required": false, "schema": { "type": "string" } }, { "name": "unionFee", "in": "query", "description": "工会费", "required": false, "schema": { "type": "string" } }, { "name": "childrenWhole", "in": "query", "description": "儿童统筹", "required": false, "schema": { "type": "string" } }, { "name": "personalTax", "in": "query", "description": "个人所得税", "required": false, "schema": { "type": "string" } }, { "name": "otherDeduction", "in": "query", "description": "其他扣款", "required": false, "schema": { "type": "string" } }, { "name": "sickDeduction", "in": "query", "description": "病事假扣款", "required": false, "schema": { "type": "string" } }, { "name": "medicalFund", "in": "query", "description": "医疗救助基金", "required": false, "schema": { "type": "string" } }, { "name": "inductrialInjury", "in": "query", "description": "工伤", "required": false, "schema": { "type": "string" } }, { "name": "personalPay", "in": "query", "description": "个人补缴", "required": false, "schema": { "type": "string" } }, { "name": "withhold", "in": "query", "description": "代扣小计", "required": false, "schema": { "type": "string" } }, { "name": "realWage", "in": "query", "description": "实发工资", "required": false, "schema": { "type": "string" } }, { "name": "nf", "in": "query", "description": "年份", "required": false, "schema": { "type": "string" } }, { "name": "yf", "in": "query", "description": "月份 不补零\n月份", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "wageIncome", "in": "query", "description": "工资收入", "required": false, "schema": { "type": "string" } }, { "name": "trainPool", "in": "query", "description": "培训兼课金", "required": false, "schema": { "type": "string" } }, { "name": "otherIncome1", "in": "query", "description": "其他收入(一)", "required": false, "schema": { "type": "string" } }, { "name": "otherIncome2", "in": "query", "description": "其他收入(二)", "required": false, "schema": { "type": "string" } }, { "name": "insurance", "in": "query", "description": "五险一金", "required": false, "schema": { "type": "string" } }, { "name": "otherDeduction2", "in": "query", "description": "其他扣款2", "required": false, "schema": { "type": "string" } }, { "name": "deductionCost", "in": "query", "description": "减除费用", "required": false, "schema": { "type": "string" } }, { "name": "remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "ny", "in": "query", "description": "年月", "required": false, "schema": { "type": "string" } }, { "name": "pMonth", "in": "query", "description": "月份", "required": false, "schema": { "type": "string" } }, { "name": "numId", "in": "query", "description": "导入序号", "required": false, "schema": { "type": "string" } }, { "name": "childEdu", "in": "query", "description": "子女教育", "required": false, "schema": { "type": "string" } }, { "name": "conEdu", "in": "query", "description": "继续教育", "required": false, "schema": { "type": "string" } }, { "name": "sickMedical", "in": "query", "description": "大病医疗", "required": false, "schema": { "type": "string" } }, { "name": "house", "in": "query", "description": "住房贷款利息或者住房租金", "required": false, "schema": { "type": "string" } }, { "name": "supportOld", "in": "query", "description": "赡养老人", "required": false, "schema": { "type": "string" } }, { "name": "houseInterest", "in": "query", "description": "累计住房贷款利息", "required": false, "schema": { "type": "string" } }, { "name": "normalView", "in": "query", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "scienceMoney", "in": "query", "description": "科研经费", "required": false, "schema": { "type": "string" } }, { "name": "vacationMoney", "in": "query", "description": "假期工资", "required": false, "schema": { "type": "string" } }, { "name": "shouldTaxMoney", "in": "query", "description": "基础工资应税收入", "required": false, "schema": { "type": "string" } }, { "name": "baseSalary", "in": "query", "description": "基础专项绩效", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "stationTypeId", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "idCardList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "teacherNoList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "selectList[0].id", "in": "query", "description": "编号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].userName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].postSalary", "in": "query", "description": "岗位工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].payWage", "in": "query", "description": "薪级工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].studentPay", "in": "query", "description": "见习期工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].liveAllowance", "in": "query", "description": "生活补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].postAllowance", "in": "query", "description": "岗位津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].houseSubsidies", "in": "query", "description": "住房(租金)补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].newHouseSubsidies", "in": "query", "description": "新职工住房补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].huiSubsidies", "in": "query", "description": "回民补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].oldSubsidies", "in": "query", "description": "养老保险补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].ageAllowance", "in": "query", "description": "教龄津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].specialSubsidies", "in": "query", "description": "特教补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].teacherAllowance", "in": "query", "description": "特级教师津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sPostAllowance1", "in": "query", "description": "特岗津贴(一)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sPostAllowance2", "in": "query", "description": "特岗津贴(二)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].other", "in": "query", "description": "其他", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].meritPay", "in": "query", "description": "奖励性绩效工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].villageSubsidies", "in": "query", "description": "乡镇工作补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].temporarySubsidies", "in": "query", "description": "临时性补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].trafficSubsidies", "in": "query", "description": "上下班交通补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].keepAllowance", "in": "query", "description": "保留津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].retroactivePay", "in": "query", "description": "补发工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].shouldPay", "in": "query", "description": "应发工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].houseFund", "in": "query", "description": "住房公积金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].medicalInsurance", "in": "query", "description": "医疗保险金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].unemployInsurance", "in": "query", "description": "失业保险金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].endowInsurance", "in": "query", "description": "养老保险金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].unionFee", "in": "query", "description": "工会费", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].childrenWhole", "in": "query", "description": "儿童统筹", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].personalTax", "in": "query", "description": "个人所得税", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherDeduction", "in": "query", "description": "其他扣款", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sickDeduction", "in": "query", "description": "病事假扣款", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].medicalFund", "in": "query", "description": "医疗救助基金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].inductrialInjury", "in": "query", "description": "工伤", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].personalPay", "in": "query", "description": "个人补缴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].withhold", "in": "query", "description": "代扣小计", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].realWage", "in": "query", "description": "实发工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].nf", "in": "query", "description": "年份", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].yf", "in": "query", "description": "月份 不补零\n月份", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].wageIncome", "in": "query", "description": "工资收入", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].trainPool", "in": "query", "description": "培训兼课金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherIncome1", "in": "query", "description": "其他收入(一)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherIncome2", "in": "query", "description": "其他收入(二)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].insurance", "in": "query", "description": "五险一金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherDeduction2", "in": "query", "description": "其他扣款2", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].deductionCost", "in": "query", "description": "减除费用", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].ny", "in": "query", "description": "年月", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].pMonth", "in": "query", "description": "月份", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].numId", "in": "query", "description": "导入序号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].childEdu", "in": "query", "description": "子女教育", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].conEdu", "in": "query", "description": "继续教育", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sickMedical", "in": "query", "description": "大病医疗", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].house", "in": "query", "description": "住房贷款利息或者住房租金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].supportOld", "in": "query", "description": "赡养老人", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].houseInterest", "in": "query", "description": "累计住房贷款利息", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].normalView", "in": "query", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "selectList[0].teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].scienceMoney", "in": "query", "description": "科研经费", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].vacationMoney", "in": "query", "description": "假期工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].shouldTaxMoney", "in": "query", "description": "基础工资应税收入", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].baseSalary", "in": "query", "description": "基础专项绩效", "required": false, "schema": { "type": "string" } }, { "name": "canSearch", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "money", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "month", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "moneyType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "a", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "b", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "c", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "d", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "e", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "f", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "g", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "h", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "i", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "j", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "k", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "l", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "startDate", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "endDate", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "countType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "exportType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "clearTypeList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "yff", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teachersalary/queryExtendSalaryInfo": { "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": { "$ref": "#/components/schemas/ProfessionalSalariesDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teachersalary/queryUserInfo": { "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": { "$ref": "#/components/schemas/ProfessionalSalariesDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teachersalary/setCanSearch": { "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": { "$ref": "#/components/schemas/ProfessionalSalariesDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teachersalary/delBatch": { "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": { "$ref": "#/components/schemas/ProfessionalSalariesDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherpayslip/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "编号", "required": false, "schema": { "type": "string" } }, { "name": "userName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "postSalary", "in": "query", "description": "岗位工资", "required": false, "schema": { "type": "string" } }, { "name": "payWage", "in": "query", "description": "薪级工资", "required": false, "schema": { "type": "string" } }, { "name": "studentPay", "in": "query", "description": "见习期工资", "required": false, "schema": { "type": "string" } }, { "name": "liveAllowance", "in": "query", "description": "生活补贴", "required": false, "schema": { "type": "string" } }, { "name": "postAllowance", "in": "query", "description": "岗位津贴", "required": false, "schema": { "type": "string" } }, { "name": "houseSubsidies", "in": "query", "description": "住房(租金)补贴", "required": false, "schema": { "type": "string" } }, { "name": "newHouseSubsidies", "in": "query", "description": "新职工住房补贴", "required": false, "schema": { "type": "string" } }, { "name": "huiSubsidies", "in": "query", "description": "回民补贴", "required": false, "schema": { "type": "string" } }, { "name": "oldSubsidies", "in": "query", "description": "养老保险补贴", "required": false, "schema": { "type": "string" } }, { "name": "ageAllowance", "in": "query", "description": "教龄津贴", "required": false, "schema": { "type": "string" } }, { "name": "specialSubsidies", "in": "query", "description": "特教补贴", "required": false, "schema": { "type": "string" } }, { "name": "teacherAllowance", "in": "query", "description": "特级教师津贴", "required": false, "schema": { "type": "string" } }, { "name": "sPostAllowance1", "in": "query", "description": "特岗津贴(一)", "required": false, "schema": { "type": "string" } }, { "name": "sPostAllowance2", "in": "query", "description": "特岗津贴(二)", "required": false, "schema": { "type": "string" } }, { "name": "other", "in": "query", "description": "其他", "required": false, "schema": { "type": "string" } }, { "name": "meritPay", "in": "query", "description": "奖励性绩效工资", "required": false, "schema": { "type": "string" } }, { "name": "villageSubsidies", "in": "query", "description": "乡镇工作补贴", "required": false, "schema": { "type": "string" } }, { "name": "temporarySubsidies", "in": "query", "description": "临时性补贴", "required": false, "schema": { "type": "string" } }, { "name": "trafficSubsidies", "in": "query", "description": "上下班交通补贴", "required": false, "schema": { "type": "string" } }, { "name": "keepAllowance", "in": "query", "description": "保留津贴", "required": false, "schema": { "type": "string" } }, { "name": "retroactivePay", "in": "query", "description": "补发工资", "required": false, "schema": { "type": "string" } }, { "name": "shouldPay", "in": "query", "description": "应发工资", "required": false, "schema": { "type": "string" } }, { "name": "houseFund", "in": "query", "description": "住房公积金", "required": false, "schema": { "type": "string" } }, { "name": "medicalInsurance", "in": "query", "description": "医疗保险金", "required": false, "schema": { "type": "string" } }, { "name": "unemployInsurance", "in": "query", "description": "失业保险金", "required": false, "schema": { "type": "string" } }, { "name": "endowInsurance", "in": "query", "description": "养老保险金", "required": false, "schema": { "type": "string" } }, { "name": "unionFee", "in": "query", "description": "工会费", "required": false, "schema": { "type": "string" } }, { "name": "childrenWhole", "in": "query", "description": "儿童统筹", "required": false, "schema": { "type": "string" } }, { "name": "personalTax", "in": "query", "description": "个人所得税", "required": false, "schema": { "type": "string" } }, { "name": "otherDeduction", "in": "query", "description": "其他扣款", "required": false, "schema": { "type": "string" } }, { "name": "sickDeduction", "in": "query", "description": "病事假扣款", "required": false, "schema": { "type": "string" } }, { "name": "medicalFund", "in": "query", "description": "医疗救助基金", "required": false, "schema": { "type": "string" } }, { "name": "inductrialInjury", "in": "query", "description": "工伤", "required": false, "schema": { "type": "string" } }, { "name": "personalPay", "in": "query", "description": "个人补缴", "required": false, "schema": { "type": "string" } }, { "name": "withhold", "in": "query", "description": "代扣小计", "required": false, "schema": { "type": "string" } }, { "name": "realWage", "in": "query", "description": "实发工资", "required": false, "schema": { "type": "string" } }, { "name": "nf", "in": "query", "description": "年份", "required": false, "schema": { "type": "string" } }, { "name": "yf", "in": "query", "description": "月份 不补零\n月份", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "wageIncome", "in": "query", "description": "工资收入", "required": false, "schema": { "type": "string" } }, { "name": "trainPool", "in": "query", "description": "培训兼课金", "required": false, "schema": { "type": "string" } }, { "name": "otherIncome1", "in": "query", "description": "其他收入(一)", "required": false, "schema": { "type": "string" } }, { "name": "otherIncome2", "in": "query", "description": "其他收入(二)", "required": false, "schema": { "type": "string" } }, { "name": "insurance", "in": "query", "description": "五险一金", "required": false, "schema": { "type": "string" } }, { "name": "otherDeduction2", "in": "query", "description": "其他扣款2", "required": false, "schema": { "type": "string" } }, { "name": "deductionCost", "in": "query", "description": "减除费用", "required": false, "schema": { "type": "string" } }, { "name": "remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "ny", "in": "query", "description": "年月", "required": false, "schema": { "type": "string" } }, { "name": "pMonth", "in": "query", "description": "月份", "required": false, "schema": { "type": "string" } }, { "name": "numId", "in": "query", "description": "导入序号", "required": false, "schema": { "type": "string" } }, { "name": "childEdu", "in": "query", "description": "子女教育", "required": false, "schema": { "type": "string" } }, { "name": "conEdu", "in": "query", "description": "继续教育", "required": false, "schema": { "type": "string" } }, { "name": "sickMedical", "in": "query", "description": "大病医疗", "required": false, "schema": { "type": "string" } }, { "name": "house", "in": "query", "description": "住房贷款利息或者住房租金", "required": false, "schema": { "type": "string" } }, { "name": "supportOld", "in": "query", "description": "赡养老人", "required": false, "schema": { "type": "string" } }, { "name": "houseInterest", "in": "query", "description": "累计住房贷款利息", "required": false, "schema": { "type": "string" } }, { "name": "normalView", "in": "query", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "scienceMoney", "in": "query", "description": "科研经费", "required": false, "schema": { "type": "string" } }, { "name": "vacationMoney", "in": "query", "description": "假期工资", "required": false, "schema": { "type": "string" } }, { "name": "shouldTaxMoney", "in": "query", "description": "基础工资应税收入", "required": false, "schema": { "type": "string" } }, { "name": "baseSalary", "in": "query", "description": "基础性绩效", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "stationTypeId", "in": "query", "description": "岗位类别配置主键", "required": false, "schema": { "type": "string" } }, { "name": "idCardList", "in": "query", "description": "证件集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "teacherNoList", "in": "query", "description": "工号集合", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "selectList[0].id", "in": "query", "description": "编号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].userName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].postSalary", "in": "query", "description": "岗位工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].payWage", "in": "query", "description": "薪级工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].studentPay", "in": "query", "description": "见习期工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].liveAllowance", "in": "query", "description": "生活补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].postAllowance", "in": "query", "description": "岗位津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].houseSubsidies", "in": "query", "description": "住房(租金)补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].newHouseSubsidies", "in": "query", "description": "新职工住房补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].huiSubsidies", "in": "query", "description": "回民补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].oldSubsidies", "in": "query", "description": "养老保险补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].ageAllowance", "in": "query", "description": "教龄津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].specialSubsidies", "in": "query", "description": "特教补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].teacherAllowance", "in": "query", "description": "特级教师津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sPostAllowance1", "in": "query", "description": "特岗津贴(一)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sPostAllowance2", "in": "query", "description": "特岗津贴(二)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].other", "in": "query", "description": "其他", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].meritPay", "in": "query", "description": "奖励性绩效工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].villageSubsidies", "in": "query", "description": "乡镇工作补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].temporarySubsidies", "in": "query", "description": "临时性补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].trafficSubsidies", "in": "query", "description": "上下班交通补贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].keepAllowance", "in": "query", "description": "保留津贴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].retroactivePay", "in": "query", "description": "补发工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].shouldPay", "in": "query", "description": "应发工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].houseFund", "in": "query", "description": "住房公积金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].medicalInsurance", "in": "query", "description": "医疗保险金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].unemployInsurance", "in": "query", "description": "失业保险金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].endowInsurance", "in": "query", "description": "养老保险金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].unionFee", "in": "query", "description": "工会费", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].childrenWhole", "in": "query", "description": "儿童统筹", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].personalTax", "in": "query", "description": "个人所得税", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherDeduction", "in": "query", "description": "其他扣款", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sickDeduction", "in": "query", "description": "病事假扣款", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].medicalFund", "in": "query", "description": "医疗救助基金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].inductrialInjury", "in": "query", "description": "工伤", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].personalPay", "in": "query", "description": "个人补缴", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].withhold", "in": "query", "description": "代扣小计", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].realWage", "in": "query", "description": "实发工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].nf", "in": "query", "description": "年份", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].yf", "in": "query", "description": "月份 不补零\n月份", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].idCard", "in": "query", "description": "身份证号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].wageIncome", "in": "query", "description": "工资收入", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].trainPool", "in": "query", "description": "培训兼课金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherIncome1", "in": "query", "description": "其他收入(一)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherIncome2", "in": "query", "description": "其他收入(二)", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].insurance", "in": "query", "description": "五险一金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].otherDeduction2", "in": "query", "description": "其他扣款2", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].deductionCost", "in": "query", "description": "减除费用", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].ny", "in": "query", "description": "年月", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].pMonth", "in": "query", "description": "月份", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].numId", "in": "query", "description": "导入序号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].childEdu", "in": "query", "description": "子女教育", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].conEdu", "in": "query", "description": "继续教育", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].sickMedical", "in": "query", "description": "大病医疗", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].house", "in": "query", "description": "住房贷款利息或者住房租金", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].supportOld", "in": "query", "description": "赡养老人", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].houseInterest", "in": "query", "description": "累计住房贷款利息", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].normalView", "in": "query", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "selectList[0].teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].scienceMoney", "in": "query", "description": "科研经费", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].vacationMoney", "in": "query", "description": "假期工资", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].shouldTaxMoney", "in": "query", "description": "基础工资应税收入", "required": false, "schema": { "type": "string" } }, { "name": "selectList[0].baseSalary", "in": "query", "description": "基础性绩效", "required": false, "schema": { "type": "string" } }, { "name": "canSearch", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "money", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "month", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "moneyType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "a", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "b", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "c", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "d", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "e", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "f", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "g", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "h", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "i", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "j", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "k", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "l", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "startDate", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "endDate", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "countType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "exportType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "clearTypeList", "in": "query", "description": "", "required": false, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "yff", "in": "query", "description": "", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherpayslip/queryExtendSalaryInfo": { "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": { "$ref": "#/components/schemas/ProfessionalPayslipDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherpayslip/queryUserInfo": { "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": { "$ref": "#/components/schemas/ProfessionalPayslipDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherpayslip/setCanSearch": { "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": { "$ref": "#/components/schemas/ProfessionalPayslipDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherpayslip/delBatch": { "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": { "$ref": "#/components/schemas/ProfessionalPayslipDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencemidcheck/{id}": { "get": { "summary": "通过id查询中期检查表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencemidcheck": { "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": { "$ref": "#/components/schemas/ScienceMidCheck", "description": "中期检查表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencemidcheck/subMidCheck": { "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": { "$ref": "#/components/schemas/ScienceMidCheck", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "ID", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "课题名称", "required": false, "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "1 指令性课题 2 其他课题", "required": false, "schema": { "type": "string" } }, { "name": "startTime", "in": "query", "description": "研究开始时间", "required": false, "schema": { "type": "string" } }, { "name": "endTime", "in": "query", "description": "研究完成时间", "required": false, "schema": { "type": "string" } }, { "name": "contentA", "in": "query", "description": "课题核心概念与界定", "required": false, "schema": { "type": "string" } }, { "name": "contentB", "in": "query", "description": "国内外统一研究领域现状与研究价值", "required": false, "schema": { "type": "string" } }, { "name": "contentC", "in": "query", "description": "研究的目标、内容(或子课题设计)与重点", "required": false, "schema": { "type": "string" } }, { "name": "contentD", "in": "query", "description": "研究的思路、过程与方法", "required": false, "schema": { "type": "string" } }, { "name": "contentE", "in": "query", "description": "主要观点与可能的创新之处", "required": false, "schema": { "type": "string" } }, { "name": "contentF", "in": "query", "description": "完成研究任务的可行性分析", "required": false, "schema": { "type": "string" } }, { "name": "contractPhone", "in": "query", "description": "联系电话", "required": false, "schema": { "type": "string" } }, { "name": "reportUser", "in": "query", "description": "主持人", "required": false, "schema": { "type": "string" } }, { "name": "reportUserType", "in": "query", "description": "主持人类型 1 校内 2 校外", "required": false, "schema": { "type": "string" } }, { "name": "reportUserName", "in": "query", "description": "主持人姓名", "required": false, "schema": { "type": "string" } }, { "name": "researchSkill", "in": "query", "description": "研究专长", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].researchSkill", "in": "query", "description": "研究专长", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].isLeader", "in": "query", "description": "0 非主持人 1 主持人\n是否主持人", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].divideWork", "in": "query", "description": "分工", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "memberList[0].deptName", "in": "query", "description": "部门名称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].deptCode", "in": "query", "description": "部门代码", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].commonDeptCode", "in": "query", "description": "二级部门", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].commonDeptName", "in": "query", "description": "二级部门名称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].mainPaper", "in": "query", "description": "主要论著", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].type", "in": "query", "description": "1 校内 2 校外\n类型", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xl", "in": "query", "description": "学历", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].zc", "in": "query", "description": "职称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].birthDay", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xw", "in": "query", "description": "学位", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].phone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xzzw", "in": "query", "description": "行政职务", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].sort", "in": "query", "description": "组员排序", "required": false, "schema": { "type": "integer" } }, { "name": "achieveAList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].achievement", "in": "query", "description": "成果名称", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].type", "in": "query", "description": "成果形式", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].cate", "in": "query", "description": "1 阶段成果 2 最终成果\n成果类别", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].finishTime", "in": "query", "description": "完成时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].teacherNo", "in": "query", "description": "负责人", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "achieveBList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].achievement", "in": "query", "description": "成果名称", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].type", "in": "query", "description": "成果形式", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].cate", "in": "query", "description": "1 阶段成果 2 最终成果\n成果类别", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].finishTime", "in": "query", "description": "完成时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].teacherNo", "in": "query", "description": "负责人", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "mainPaper", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "reportType", "in": "query", "description": "类型", "required": false, "schema": { "type": "string" } }, { "name": "reportTypeDetail", "in": "query", "description": "明细", "required": false, "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "auditStatus", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "score", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scienceNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "xl", "in": "query", "description": "学历", "required": false, "schema": { "type": "string" } }, { "name": "zc", "in": "query", "description": "职称", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthDay", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "xw", "in": "query", "description": "学位", "required": false, "schema": { "type": "string" } }, { "name": "phone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "xzzw", "in": "query", "description": "行政职务", "required": false, "schema": { "type": "string" } }, { "name": "midCheckUrl", "in": "query", "description": "中期检查URL", "required": false, "schema": { "type": "string" } }, { "name": "endCheckUrl", "in": "query", "description": "结题鉴定URL", "required": false, "schema": { "type": "string" } }, { "name": "changeTitleUrl", "in": "query", "description": "课题变更URL", "required": false, "schema": { "type": "string" } }, { "name": "cancleUrl", "in": "query", "description": "撤销申请URl", "required": false, "schema": { "type": "string" } }, { "name": "openUrl", "in": "query", "description": "开题材料", "required": false, "schema": { "type": "string" } }, { "name": "endCerUrl", "in": "query", "description": "结题证书", "required": false, "schema": { "type": "string" } }, { "name": "changeId", "in": "query", "description": "变更Id", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scienceComment", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "endStatus", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "projectCheckUrl", "in": "query", "description": "立项申报书", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "otherOptionType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "midProjectContract", "in": "query", "description": "课题研究合同书", "required": false, "schema": { "type": "string" } }, { "name": "endProof", "in": "query", "description": "结题证明", "required": false, "schema": { "type": "string" } }, { "name": "ecoProof", "in": "query", "description": "经济效益证明", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/exportData": { "get": { "summary": "导出", "deprecated": false, "description": "", "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", "description": "ID", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "课题名称", "required": false, "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "1 指令性课题 2 其他课题", "required": false, "schema": { "type": "string" } }, { "name": "startTime", "in": "query", "description": "研究开始时间", "required": false, "schema": { "type": "string" } }, { "name": "endTime", "in": "query", "description": "研究完成时间", "required": false, "schema": { "type": "string" } }, { "name": "contentA", "in": "query", "description": "课题核心概念与界定", "required": false, "schema": { "type": "string" } }, { "name": "contentB", "in": "query", "description": "国内外统一研究领域现状与研究价值", "required": false, "schema": { "type": "string" } }, { "name": "contentC", "in": "query", "description": "研究的目标、内容(或子课题设计)与重点", "required": false, "schema": { "type": "string" } }, { "name": "contentD", "in": "query", "description": "研究的思路、过程与方法", "required": false, "schema": { "type": "string" } }, { "name": "contentE", "in": "query", "description": "主要观点与可能的创新之处", "required": false, "schema": { "type": "string" } }, { "name": "contentF", "in": "query", "description": "完成研究任务的可行性分析", "required": false, "schema": { "type": "string" } }, { "name": "contractPhone", "in": "query", "description": "联系电话", "required": false, "schema": { "type": "string" } }, { "name": "reportUser", "in": "query", "description": "主持人", "required": false, "schema": { "type": "string" } }, { "name": "reportUserType", "in": "query", "description": "主持人类型 1 校内 2 校外", "required": false, "schema": { "type": "string" } }, { "name": "reportUserName", "in": "query", "description": "主持人姓名", "required": false, "schema": { "type": "string" } }, { "name": "researchSkill", "in": "query", "description": "研究专长", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].researchSkill", "in": "query", "description": "研究专长", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].isLeader", "in": "query", "description": "0 非主持人 1 主持人\n是否主持人", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].divideWork", "in": "query", "description": "分工", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "memberList[0].deptName", "in": "query", "description": "部门名称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].deptCode", "in": "query", "description": "部门代码", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].commonDeptCode", "in": "query", "description": "二级部门", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].commonDeptName", "in": "query", "description": "二级部门名称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].mainPaper", "in": "query", "description": "主要论著", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].type", "in": "query", "description": "1 校内 2 校外\n类型", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xl", "in": "query", "description": "学历", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].zc", "in": "query", "description": "职称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].birthDay", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xw", "in": "query", "description": "学位", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].phone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xzzw", "in": "query", "description": "行政职务", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].sort", "in": "query", "description": "组员排序", "required": false, "schema": { "type": "integer" } }, { "name": "achieveAList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].achievement", "in": "query", "description": "成果名称", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].type", "in": "query", "description": "成果形式", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].cate", "in": "query", "description": "1 阶段成果 2 最终成果\n成果类别", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].finishTime", "in": "query", "description": "完成时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].teacherNo", "in": "query", "description": "负责人", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "achieveBList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].achievement", "in": "query", "description": "成果名称", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].type", "in": "query", "description": "成果形式", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].cate", "in": "query", "description": "1 阶段成果 2 最终成果\n成果类别", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].finishTime", "in": "query", "description": "完成时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].teacherNo", "in": "query", "description": "负责人", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "mainPaper", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "reportType", "in": "query", "description": "类型", "required": false, "schema": { "type": "string" } }, { "name": "reportTypeDetail", "in": "query", "description": "明细", "required": false, "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "auditStatus", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "score", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scienceNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "xl", "in": "query", "description": "学历", "required": false, "schema": { "type": "string" } }, { "name": "zc", "in": "query", "description": "职称", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthDay", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "xw", "in": "query", "description": "学位", "required": false, "schema": { "type": "string" } }, { "name": "phone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "xzzw", "in": "query", "description": "行政职务", "required": false, "schema": { "type": "string" } }, { "name": "midCheckUrl", "in": "query", "description": "中期检查URL", "required": false, "schema": { "type": "string" } }, { "name": "endCheckUrl", "in": "query", "description": "结题鉴定URL", "required": false, "schema": { "type": "string" } }, { "name": "changeTitleUrl", "in": "query", "description": "课题变更URL", "required": false, "schema": { "type": "string" } }, { "name": "cancleUrl", "in": "query", "description": "撤销申请URl", "required": false, "schema": { "type": "string" } }, { "name": "openUrl", "in": "query", "description": "开题材料", "required": false, "schema": { "type": "string" } }, { "name": "endCerUrl", "in": "query", "description": "结题证书", "required": false, "schema": { "type": "string" } }, { "name": "changeId", "in": "query", "description": "变更Id", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scienceComment", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "endStatus", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "projectCheckUrl", "in": "query", "description": "立项申报书", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "otherOptionType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "midProjectContract", "in": "query", "description": "课题研究合同书", "required": false, "schema": { "type": "string" } }, { "name": "endProof", "in": "query", "description": "结题证明", "required": false, "schema": { "type": "string" } }, { "name": "ecoProof", "in": "query", "description": "经济效益证明", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/staticPage": { "get": { "summary": "统计", "deprecated": false, "description": "", "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", "description": "ID", "required": false, "schema": { "type": "string" } }, { "name": "title", "in": "query", "description": "课题名称", "required": false, "schema": { "type": "string" } }, { "name": "type", "in": "query", "description": "1 指令性课题 2 其他课题", "required": false, "schema": { "type": "string" } }, { "name": "startTime", "in": "query", "description": "研究开始时间", "required": false, "schema": { "type": "string" } }, { "name": "endTime", "in": "query", "description": "研究完成时间", "required": false, "schema": { "type": "string" } }, { "name": "contentA", "in": "query", "description": "课题核心概念与界定", "required": false, "schema": { "type": "string" } }, { "name": "contentB", "in": "query", "description": "国内外统一研究领域现状与研究价值", "required": false, "schema": { "type": "string" } }, { "name": "contentC", "in": "query", "description": "研究的目标、内容(或子课题设计)与重点", "required": false, "schema": { "type": "string" } }, { "name": "contentD", "in": "query", "description": "研究的思路、过程与方法", "required": false, "schema": { "type": "string" } }, { "name": "contentE", "in": "query", "description": "主要观点与可能的创新之处", "required": false, "schema": { "type": "string" } }, { "name": "contentF", "in": "query", "description": "完成研究任务的可行性分析", "required": false, "schema": { "type": "string" } }, { "name": "contractPhone", "in": "query", "description": "联系电话", "required": false, "schema": { "type": "string" } }, { "name": "reportUser", "in": "query", "description": "主持人", "required": false, "schema": { "type": "string" } }, { "name": "reportUserType", "in": "query", "description": "主持人类型 1 校内 2 校外", "required": false, "schema": { "type": "string" } }, { "name": "reportUserName", "in": "query", "description": "主持人姓名", "required": false, "schema": { "type": "string" } }, { "name": "researchSkill", "in": "query", "description": "研究专长", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].teacherNo", "in": "query", "description": "教师编号", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].researchSkill", "in": "query", "description": "研究专长", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].isLeader", "in": "query", "description": "0 非主持人 1 主持人\n是否主持人", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].divideWork", "in": "query", "description": "分工", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "memberList[0].deptName", "in": "query", "description": "部门名称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].deptCode", "in": "query", "description": "部门代码", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].commonDeptCode", "in": "query", "description": "二级部门", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].commonDeptName", "in": "query", "description": "二级部门名称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].mainPaper", "in": "query", "description": "主要论著", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].type", "in": "query", "description": "1 校内 2 校外\n类型", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xl", "in": "query", "description": "学历", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].zc", "in": "query", "description": "职称", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].birthDay", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xw", "in": "query", "description": "学位", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].phone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].xzzw", "in": "query", "description": "行政职务", "required": false, "schema": { "type": "string" } }, { "name": "memberList[0].sort", "in": "query", "description": "组员排序", "required": false, "schema": { "type": "integer" } }, { "name": "achieveAList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].achievement", "in": "query", "description": "成果名称", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].type", "in": "query", "description": "成果形式", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].cate", "in": "query", "description": "1 阶段成果 2 最终成果\n成果类别", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].finishTime", "in": "query", "description": "完成时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].teacherNo", "in": "query", "description": "负责人", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "achieveAList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "achieveBList[0].id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].achievement", "in": "query", "description": "成果名称", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].type", "in": "query", "description": "成果形式", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].cate", "in": "query", "description": "1 阶段成果 2 最终成果\n成果类别", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].finishTime", "in": "query", "description": "完成时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].teacherNo", "in": "query", "description": "负责人", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].reportId", "in": "query", "description": "课题ID", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].createBy", "in": "query", "description": "创建者", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].updateBy", "in": "query", "description": "更新者", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "achieveBList[0].tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "name": "mainPaper", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "reportType", "in": "query", "description": "类型", "required": false, "schema": { "type": "string" } }, { "name": "reportTypeDetail", "in": "query", "description": "明细", "required": false, "schema": { "type": "string" } }, { "name": "status", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "auditStatus", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "score", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "remarks", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scienceNo", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "backReason", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "xl", "in": "query", "description": "学历", "required": false, "schema": { "type": "string" } }, { "name": "zc", "in": "query", "description": "职称", "required": false, "schema": { "type": "string" } }, { "name": "sex", "in": "query", "description": "性别", "required": false, "schema": { "type": "string" } }, { "name": "birthDay", "in": "query", "description": "出生年月", "required": false, "schema": { "type": "string" } }, { "name": "xw", "in": "query", "description": "学位", "required": false, "schema": { "type": "string" } }, { "name": "phone", "in": "query", "description": "电话", "required": false, "schema": { "type": "string" } }, { "name": "xzzw", "in": "query", "description": "行政职务", "required": false, "schema": { "type": "string" } }, { "name": "midCheckUrl", "in": "query", "description": "中期检查URL", "required": false, "schema": { "type": "string" } }, { "name": "endCheckUrl", "in": "query", "description": "结题鉴定URL", "required": false, "schema": { "type": "string" } }, { "name": "changeTitleUrl", "in": "query", "description": "课题变更URL", "required": false, "schema": { "type": "string" } }, { "name": "cancleUrl", "in": "query", "description": "撤销申请URl", "required": false, "schema": { "type": "string" } }, { "name": "openUrl", "in": "query", "description": "开题材料", "required": false, "schema": { "type": "string" } }, { "name": "endCerUrl", "in": "query", "description": "结题证书", "required": false, "schema": { "type": "string" } }, { "name": "changeId", "in": "query", "description": "变更Id", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "level", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "scienceComment", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "endStatus", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "projectCheckUrl", "in": "query", "description": "立项申报书", "required": false, "schema": { "type": "string" } }, { "name": "deptCode", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "otherOptionType", "in": "query", "description": "", "required": false, "schema": { "type": "string" } }, { "name": "midProjectContract", "in": "query", "description": "课题研究合同书", "required": false, "schema": { "type": "string" } }, { "name": "endProof", "in": "query", "description": "结题证明", "required": false, "schema": { "type": "string" } }, { "name": "ecoProof", "in": "query", "description": "经济效益证明", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/{id}": { "get": { "summary": "通过id查询科研课题立项申报管理", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] }, "delete": { "summary": "通过id删除科研课题立项申报管理", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "科研课题立项申报管理" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] }, "put": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "科研课题立项申报管理" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/otherOption": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/subChange": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/uploadMaterial": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/exportScienceExcel": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": {} } } } } }, "security": [] } }, "/sciencereport/examReport": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/examChange": { "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": { "$ref": "#/components/schemas/ScienceChangeHistoryDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/subOtherEndMaterial": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "科研课题立项申报管理" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/sciencereport/editReportUser": { "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": { "$ref": "#/components/schemas/ScienceReportDTO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/teacherawardtax/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "realName", "in": "query", "description": "姓名", "required": false, "schema": { "type": "string" } }, { "name": "idCard", "in": "query", "description": "身份证", "required": false, "schema": { "type": "string" } }, { "name": "teacherNo", "in": "query", "description": "工号", "required": false, "schema": { "type": "string" } }, { "name": "startDate", "in": "query", "description": "开始日期", "required": false, "schema": { "type": "string" } }, { "name": "endDate", "in": "query", "description": "结束日期", "required": false, "schema": { "type": "string" } }, { "name": "year", "in": "query", "description": "年份", "required": false, "schema": { "type": "string" } }, { "name": "income", "in": "query", "description": "收入", "required": false, "schema": { "type": "string" } }, { "name": "taxRate", "in": "query", "description": "税率", "required": false, "schema": { "type": "string" } }, { "name": "deductMoney", "in": "query", "description": "速算扣除", "required": false, "schema": { "type": "string" } }, { "name": "realMoney", "in": "query", "description": "应补(退)税额", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标志位", "required": false, "schema": { "type": "string" } }, { "name": "tenantId", "in": "query", "description": "租户id", "required": false, "schema": { "type": "integer" } }, { "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": { "$ref": "#/components/schemas/R", "description": "" }, "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": {} } }, "4": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } }, "5": { "summary": "成功示例", "value": { "ok": false, "code": null, "msg": "", "data": {} } } } } } } }, "security": [] } }, "/purchasingcategory/tree": { "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingcategory": { "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": { "$ref": "#/components/schemas/PurchasingCategory", "description": "采购-品目" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingcategory/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": { "$ref": "#/components/schemas/PurchasingCategory", "description": "采购-品目" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingcategory/delete": { "post": { "summary": "通过id删除采购-品目", "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": "string", "description": "id" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingapply/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "purchaseNo", "in": "query", "description": "采购编号", "required": false, "schema": { "type": "string" } }, { "name": "projectName", "in": "query", "description": "采购项目名称", "required": false, "schema": { "type": "string" } }, { "name": "projectType", "in": "query", "description": "项目类别 A:货物 B:工程 C:服务", "required": false, "schema": { "type": "string" } }, { "name": "projectContent", "in": "query", "description": "采购内容", "required": false, "schema": { "type": "string" } }, { "name": "applyDate", "in": "query", "description": "填报日期", "required": false, "schema": { "type": "string" } }, { "name": "fundSource", "in": "query", "description": "资金来源 0:切块经费 1:设备购置费 2:专项经费 3:代办费 4:培训经费 5:日常公用经费 6:技能大赛经费 7:基本建设资金 8:暂存款 9:会议费\n资金来源", "required": false, "schema": { "type": "string" } }, { "name": "budget", "in": "query", "description": "预算金额(元)", "required": false, "schema": { "type": "string" } }, { "name": "isCentralized", "in": "query", "description": "是否集采 0:否 1:是", "required": false, "schema": { "type": "string" } }, { "name": "isSpecial", "in": "query", "description": "是否特殊情况 0:否 1:紧急 2:单一 3:进口", "required": false, "schema": { "type": "string" } }, { "name": "purchaseMode", "in": "query", "description": "采购形式 0:部门自行采购 2:学校统一采购", "required": false, "schema": { "type": "string" } }, { "name": "purchaseSchool", "in": "query", "description": "学校统一采购方式 0:无 1:政府采购 2:学校自主采购", "required": false, "schema": { "type": "string" } }, { "name": "purchaseType", "in": "query", "description": "采购方式(根据内部采购还是集中采购,查询不同的字典数据)\n采购方式", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingapply/{id}": { "get": { "summary": "通过id查询采购申请表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingapply": { "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": { "$ref": "#/components/schemas/PurchasingApplySaveDTO", "description": "采购申请保存DTO" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingapply/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": { "$ref": "#/components/schemas/PurchasingApply", "description": "采购申请表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingapply/delete": { "post": { "summary": "通过id删除采购申请表", "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": "string", "description": "id" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingfiles/upload": { "post": { "summary": "上传文件", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "purchaseId", "in": "query", "description": "采购申请ID(可选)", "required": false, "schema": { "type": "string" } }, { "name": "fileType", "in": "query", "description": "文件类型(可选,默认10)", "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" } } ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "file": { "description": "文件", "type": "string", "format": "binary" } }, "required": [ "file" ] } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingfiles/show": { "post": { "summary": "show", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "fileName", "in": "query", "description": "", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingspec/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "", "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", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "name", "in": "query", "description": "特殊情况名称", "required": false, "schema": { "type": "string" } }, { "name": "template", "in": "query", "description": "需求模版下载", "required": false, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingspec/{id}": { "get": { "summary": "通过id查询特殊情况表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingspec": { "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": { "$ref": "#/components/schemas/PurchasingSpec", "description": "特殊情况表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingspec/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": { "$ref": "#/components/schemas/PurchasingSpec", "description": "特殊情况表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingspec/delete": { "post": { "summary": "通过id删除特殊情况表", "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": "string", "description": "id" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "R" }, "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": {} } } } } } } }, "security": [] } }, "/purchasingagent/page": { "get": { "summary": "分页查询", "deprecated": false, "description": "分页查询\n分页查询\n分页查询招标代理表", "tags": [], "parameters": [ { "name": "id", "in": "query", "description": "主键", "required": false, "schema": { "type": "string" } }, { "name": "createBy", "in": "query", "description": "创建人", "required": false, "schema": { "type": "string" } }, { "name": "createTime", "in": "query", "description": "创建时间", "required": false, "schema": { "type": "string" } }, { "name": "updateBy", "in": "query", "description": "更新人", "required": false, "schema": { "type": "string" } }, { "name": "updateTime", "in": "query", "description": "更新时间", "required": false, "schema": { "type": "string" } }, { "name": "delFlag", "in": "query", "description": "删除标记", "required": false, "schema": { "type": "string" } }, { "name": "remark", "in": "query", "description": "备注", "required": false, "schema": { "type": "string" } }, { "name": "agentName", "in": "query", "description": "代理名称", "required": false, "schema": { "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 d10abe80-1b0e-4564-89ab-915b01c004c9", "schema": { "type": "string", "default": "Bearer d10abe80-1b0e-4564-89ab-915b01c004c9" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RPagePurchasingAgent", "description": "R>" }, "example": { "code": 0, "msg": "", "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": "" } } } } } }, "security": [] } }, "/purchasingagent/{id}": { "get": { "summary": "通过id查询招标代理表", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "id", "in": "path", "description": "id", "required": true, "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": { "$ref": "#/components/schemas/RPurchasingAgent", "description": "R" }, "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": "" } } } } } } } }, "security": [] } }, "/purchasingagent": { "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": { "$ref": "#/components/schemas/PurchasingAgent", "description": "招标代理表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RBoolean", "description": "R" }, "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 } } } } } } }, "security": [] } }, "/purchasingagent/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": { "$ref": "#/components/schemas/PurchasingAgent", "description": "招标代理表" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RBoolean", "description": "R" }, "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 } } } } } } }, "security": [] } }, "/purchasingagent/delete": { "post": { "summary": "通过id删除招标代理表", "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": "string", "description": "id" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RBoolean", "description": "R" }, "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 } } } } } } }, "security": [] } } }, "components": { "schemas": { "R": { "type": "object", "properties": { "ok": { "type": "boolean" }, "code": { "description": "返回标记:成功标记=0,失败标记=1", "type": "null" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "object", "properties": {}, "description": "数据" } } }, "java.lang.Object": { "type": "object", "properties": {}, "description": "数据" }, "班主任每周工作安排": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户ID" }, "schoolYear": { "type": "string", "description": "" }, "schoolTerm": { "type": "string", "description": "" }, "title": { "type": "string", "description": "" }, "content": { "type": "string", "description": "" }, "author": { "type": "string", "description": "" } }, "description": "数据" }, "RBoolean": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回码,0-成功 1-失败" }, "msg": { "type": "string", "description": "返回消息" }, "data": { "type": "boolean", "description": "返回数据" } } }, "ProfessionalStationType": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "typeName": { "type": "string", "description": "岗位类别名称" } } }, "学生就诊记录table扩展表(聚集型病例)": { "type": "object", "properties": { "createTime": { "type": "string", "description": "日期" }, "classNo": { "type": "string", "description": "班级" }, "realName": { "type": "string", "description": "姓名" }, "phone": { "type": "string", "description": "电话" }, "roomNo": { "type": "string", "description": "宿舍" }, "classRoomAddress": { "type": "string", "description": "教室地址" }, "classTeacherName": { "type": "string", "description": "班主任" }, "classTeacherPhone": { "type": "string", "description": "班主任电话" }, "cbzd": { "type": "string", "description": "初步诊断" } }, "description": "学生就诊记录table扩展表(聚集型病例)" }, "WeekPlan": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户ID" }, "schoolYear": { "type": "string", "description": "" }, "schoolTerm": { "type": "string", "description": "" }, "title": { "type": "string", "description": "" }, "content": { "type": "string", "description": "" }, "author": { "type": "string", "description": "" } } }, "RPurchasingCategory": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "$ref": "#/components/schemas/PurchasingCategory" } } }, "RPurchasingAgent": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回码,0-成功 1-失败" }, "msg": { "type": "string", "description": "返回消息" }, "data": { "$ref": "#/components/schemas/PurchasingAgent", "description": "数据" } } }, "ProfessionalWorkType": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "workName": { "type": "string", "description": "工种名称" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" } } }, "班级考勤学生表": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "attendanceId": { "type": "string", "description": "班级考勤ID" }, "stuNo": { "type": "string", "description": "学号" }, "realName": { "type": "string", "description": "姓名" }, "attendanceType": { "type": "string", "description": "考勤类型" }, "roomNo": { "type": "string", "description": "宿舍号" }, "stayDorm": { "type": "string", "description": "是否留宿 0:否 1:是" }, "leaveReason": { "type": "string", "description": "请假事由" }, "leaveStartTime": { "type": "string", "description": "请假开始时间" }, "leaveEndTime": { "type": "string", "description": "请假结束时间" }, "bedNo": { "type": "string", "description": "" }, "dealContent": { "type": "string", "description": "" } }, "description": "班级考勤学生表" }, "RPagePurchasingCategory": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "$ref": "#/components/schemas/PagePurchasingCategory" } } }, "RPagePurchasingAgent": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回码,0-成功 1-失败" }, "msg": { "type": "string", "description": "返回消息" }, "data": { "$ref": "#/components/schemas/PagePurchasingAgent", "description": "数据" } } }, "PurchasingApplySaveDTO": { "type": "object", "properties": { "projectName": { "type": "string", "description": "采购项目名称" }, "projectType": { "type": "string", "description": "项目类别 A:货物 B:工程 C:服务" }, "projectContent": { "type": "string", "description": "采购内容" }, "applyDate": { "type": "string", "description": "填报日期" }, "fundSource": { "type": "string", "description": "资金来源 0:切块经费 1:设备购置费 2:专项经费 3:代办费 4:培训经费 5:日常公用经费 6:技能大赛经费 7:基本建设资金 8:暂存款 9:会议费\n资金来源" }, "budget": { "type": "number", "description": "预算金额(元)", "minimum": 0.01, "exclusiveMinimum": true }, "isCentralized": { "type": "string", "description": "是否集采 0:否 1:是" }, "isSpecial": { "type": "string", "description": "是否特殊情况 0:否 1:紧急 2:单一 3:进口" }, "purchaseMode": { "type": "string", "description": "采购形式 0:部门自行采购 2:学校统一采购" }, "purchaseSchool": { "type": "string", "description": "学校统一采购方式 0:无 1:政府采购 2:学校自主采购" }, "purchaseType": { "type": "string", "description": "采购方式(根据内部采购还是集中采购,查询不同的字典数据)\n采购方式" }, "categoryCode": { "type": "string", "description": "品目编码(用于判断是否在服务类目指定的品目编码范围内)\n品目编码" }, "fileIds": { "type": "array", "items": { "type": "string" }, "description": "附件ID列表(已上传的附件ID)\n附件ID列表" }, "remark": { "type": "string", "description": "备注" } }, "required": [ "projectContent", "budget", "isCentralized", "isSpecial" ] }, "ProfessionalStationDutyLevel": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "stationDutyLevelName": { "type": "string", "description": "职务级别名称" } } }, "net.cyweb.cloud.stuwork.api.VO.ClassAttendaceAnalyseForMasterVO": { "type": "object", "properties": { "date": { "type": "string", "description": "日期\")" }, "shouldNum": { "type": "integer", "description": "应到\")", "default": 0 }, "realNum": { "type": "integer", "description": "实到\")", "default": 0 }, "realRate": { "type": "string", "description": "实到率\")", "default": "0.00%" }, "signRate": { "type": "string", "description": "签到率\")", "default": "0.00%" }, "lateNum": { "type": "integer", "description": "迟到\")", "default": 0 }, "aflNum": { "type": "integer", "description": "请假晚到\")", "default": 0 }, "thingNum": { "type": "integer", "description": "事假\")", "default": 0 }, "sickNum": { "type": "integer", "description": "病假\")", "default": 0 }, "truanceNum": { "type": "integer", "description": "旷课\")", "default": 0 }, "outContactNum": { "type": "integer", "description": "失联\")", "default": 0 }, "schoolThingNum": { "type": "integer", "description": "校内请假\")", "default": 0 }, "normalNum": { "type": "integer", "description": "正常签到\")", "default": 0 }, "noAttendNum": { "type": "integer", "description": "未考勤\")", "default": 0 }, "classCode": { "type": "string", "description": "班级代码\")" }, "createTime": { "type": "string", "description": "创建时间\")" }, "className": { "type": "string", "description": "班级名称\")" }, "attendanceId": { "type": "string", "description": "考勤iD\")" } }, "description": "net.cyweb.cloud.stuwork.api.VO.ClassAttendaceAnalyseForMasterVO" }, "RPurchasingSpec": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "$ref": "#/components/schemas/PurchasingSpec" } } }, "PagePurchasingAgent": { "type": "object", "properties": { "records": { "type": "array", "items": { "$ref": "#/components/schemas/PurchasingAgent", "description": "招标代理表" }, "description": "数据列表" }, "total": { "type": "integer", "description": "总记录数", "format": "int64" }, "size": { "type": "integer", "description": "每页大小", "format": "int64" }, "current": { "type": "integer", "description": "当前页", "format": "int64" }, "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": "", "format": "int64" }, "countId": { "type": "string", "description": "" } }, "description": "分页结果" }, "PurchasingApply": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "remark": { "type": "string", "description": "备注" }, "purchaseNo": { "type": "string", "description": "采购编号" }, "projectName": { "type": "string", "description": "采购项目名称" }, "projectType": { "type": "string", "description": "项目类别 A:货物 B:工程 C:服务" }, "projectContent": { "type": "string", "description": "采购内容" }, "applyDate": { "type": "string", "description": "填报日期" }, "fundSource": { "type": "string", "description": "资金来源 0:切块经费 1:设备购置费 2:专项经费 3:代办费 4:培训经费 5:日常公用经费 6:技能大赛经费 7:基本建设资金 8:暂存款 9:会议费\n资金来源" }, "budget": { "type": "number", "description": "预算金额(元)" }, "isCentralized": { "type": "string", "description": "是否集采 0:否 1:是" }, "isSpecial": { "type": "string", "description": "是否特殊情况 0:否 1:紧急 2:单一 3:进口" }, "purchaseMode": { "type": "string", "description": "采购形式 0:部门自行采购 2:学校统一采购" }, "purchaseSchool": { "type": "string", "description": "学校统一采购方式 0:无 1:政府采购 2:学校自主采购" }, "purchaseType": { "type": "string", "description": "采购方式(根据内部采购还是集中采购,查询不同的字典数据)\n采购方式" } } }, "ProfessionalTopicSourceConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "sourceName": { "type": "string", "description": "课题来源名称" } } }, "net.cyweb.cloud.stuwork.api.VO.SchoolAttendanceDetailVO": { "type": "object", "properties": { "schoolName": { "type": "string", "description": "学校名称\")" }, "shouldNum": { "type": "integer", "description": "应到 在校-全天请假\")" }, "totalNums": { "type": "integer", "description": "在校学生总数\")" }, "atNums": { "type": "integer", "description": "在籍人数\")" }, "realNum": { "type": "integer", "description": "实到 扫脸+考勤-失联-全天请假\")" }, "leaveNum": { "type": "integer", "description": "全天请假\")" }, "errorNum": { "type": "integer", "description": "异常 (没有考勤 没有扫脸 没有请假的) + 失联的\")" }, "classAtNum": { "type": "integer", "description": "点名人数\")", "format": "int64" }, "faceNum": { "type": "integer", "description": "扫脸人数\")" }, "tenantId": { "type": "integer", "description": "" }, "date": { "type": "string", "description": "" }, "zdTotal": { "type": "integer", "description": "走读生总数\")" }, "zdFaceTotal": { "type": "integer", "description": "走读生扫脸总数\")" }, "zdFaceRate": { "type": "string", "description": "走读生扫脸率\")" }, "zsTotal": { "type": "integer", "description": "住宿生总数\")" }, "zsFaceTotal": { "type": "integer", "description": "住宿生扫脸总数\")" }, "zsFaceRate": { "type": "string", "description": "住宿生扫脸率\")" }, "zdApplyNo": { "type": "integer", "description": "走读生全天请假\")" }, "faceRate": { "type": "string", "description": "总扫脸率\")" }, "noFace": { "type": "integer", "description": "总未扫脸\")", "default": 0 }, "zdNoFaceTotal": { "type": "integer", "description": "走读生未扫脸\")", "default": 0 }, "zsNoFaceTotal": { "type": "integer", "description": "住宿生未扫脸\")", "default": 0 }, "attendanceNum": { "type": "integer", "description": "考勤人数\")" }, "noAttendanceNum": { "type": "integer", "description": "未考勤\")" }, "alternatStuNums": { "type": "integer", "description": "工学交替\")" }, "dgNums": { "type": "integer", "description": "顶岗学生\")" }, "noAtAndFaceStuNums": { "type": "integer", "description": "未考勤且未扫脸\")" }, "rate": { "type": "string", "description": "平均异常率\")" } }, "description": "数据" }, "RPagePurchasingSpec": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "$ref": "#/components/schemas/PagePurchasingSpec" } } }, "PurchasingAgent": { "type": "object", "properties": { "id": { "type": "string", "description": "主键ID" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记(0-正常,1-删除)" }, "remark": { "type": "string", "description": "备注" }, "agentName": { "type": "string", "description": "代理名称" } }, "description": "招标代理表" }, "ProfessionalPoliticsStatus": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "politicsStatusId": { "type": "string", "description": "政治面貌id" }, "joinTime": { "type": "string", "description": "加入时间" }, "correctionTime": { "type": "string", "description": "转正时间" }, "teacherNo": { "type": "string", "description": "教师编号" } } }, "net.cyweb.cloud.stuwork.api.entity.mongoentity.EverDayStuAttendanceEntity": { "type": "object", "properties": { "_id": { "type": "string", "description": "id\")" }, "stuNo": { "type": "string", "description": "学号\")" }, "stuName": { "type": "string", "description": "姓名\")" }, "parentPhone": { "type": "string", "description": "家长电话\")" }, "parentPhoneTwo": { "type": "string", "description": "家长电话2\")" }, "className": { "type": "string", "description": "班级名称\")" }, "majorName": { "type": "string", "description": "专业名称\")" }, "phone": { "type": "string", "description": "学生电话\")" }, "masterPhone": { "type": "string", "description": "班主任号码\")" }, "isDeviceIn": { "type": "string", "description": "门禁记录\")", "default": "0" }, "isAttendance": { "type": "string", "description": "班级考勤\")", "default": "0" }, "attendanceType": { "type": "string", "description": "考勤类型 0 正常 1 请假 -1 异常\")" }, "date": { "type": "string", "description": "考勤日期\")" }, "dealContent": { "type": "string", "description": "异常处理结果\")" } }, "description": "net.cyweb.cloud.stuwork.api.entity.mongoentity.EverDayStuAttendanceEntity" }, "PagePurchasingCategory": { "type": "object", "properties": { "records": { "type": "array", "items": { "$ref": "#/components/schemas/PurchasingCategory" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" } } }, "ProfessionalTeacherType": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "typeName": { "type": "string", "description": "类型名称" } } }, "com.baomidou.mybatisplus.core.metadata.OrderItem": { "type": "object", "properties": { "column": { "type": "string", "description": "需要进行排序的字段" }, "asc": { "type": "boolean", "description": "是否正序排列,默认 true", "default": "true" } }, "description": "com.baomidou.mybatisplus.core.metadata.OrderItem" }, "PagePurchasingSpec": { "type": "object", "properties": { "records": { "type": "array", "items": { "$ref": "#/components/schemas/PurchasingSpec" } }, "total": { "type": "integer" }, "size": { "type": "integer" }, "current": { "type": "integer" } } }, "OrderItem": { "type": "object", "properties": { "column": { "type": "string", "description": "" }, "asc": { "type": "boolean", "description": "" } } }, "ProfessionalAcademicEducationTypeConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "name": { "type": "string", "description": "类型名称" } } }, "net.cyweb.cloud.stuwork.api.VO.ErrorApplyLeaveVO": { "type": "object", "properties": { "tenantId": { "type": "integer", "description": "学校Id\")" }, "totalStu": { "type": "integer", "description": "学生总人数\")" }, "totalNums": { "type": "integer", "description": "请假总次数\")" }, "schoolName": { "type": "string", "description": "学校名称\")" }, "singleApplyNums": { "type": "integer", "description": "单次请假超过天数人数\")" }, "multiApplyNums": { "type": "integer", "description": "累计请假超过天数人数\")" }, "applySuNums": { "type": "integer", "description": "连续请假超过次数人数\")" }, "noFaceNums": { "type": "integer", "description": "时间段内未扫脸信息\")" } }, "description": "数据" }, "PurchasingCategory": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "remark": { "type": "string", "description": "备注" }, "name": { "type": "string", "description": "品目名称" }, "code": { "type": "string", "description": "品目编码" }, "parentCode": { "type": "string", "description": "上级品目编码" }, "isMallService": { "type": "string", "description": "是否为网上商城服务类\n是否为网上商城服务类 0:否 1:是" }, "isMallProject": { "type": "string", "description": "是否为网上商城工程类\n是否为网上商城工程类 0:否 1:是" } }, "description": "采购-品目" }, "ScienceReportMemberEnd": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "reportId": { "type": "string", "description": "课题ID" }, "teacherNo": { "type": "string", "description": "工号" }, "realName": { "type": "string", "description": "姓名" }, "researchSkill": { "type": "string", "description": "研究专长" }, "isLeader": { "type": "string", "description": "0 非主持人 1 主持人\n是否主持人" }, "divideWork": { "type": "string", "description": "分工" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" }, "deptName": { "type": "string", "description": "部门名称" }, "deptCode": { "type": "string", "description": "部门代码" }, "commonDeptCode": { "type": "string", "description": "二级部门" }, "commonDeptName": { "type": "string", "description": "二级部门名称" }, "mainPaper": { "type": "string", "description": "主要论著" }, "type": { "type": "string", "description": "1 校内 2 校外\n类型" }, "xl": { "type": "string", "description": "学历" }, "zc": { "type": "string", "description": "职称" }, "sex": { "type": "string", "description": "性别" }, "birthDay": { "type": "string", "description": "生日" }, "xw": { "type": "string", "description": "学位" }, "phone": { "type": "string", "description": "电话" }, "xzzw": { "type": "string", "description": "行政职务" }, "changeHistoryId": { "type": "string", "description": "课题变更Id" }, "isChoose": { "type": "string", "description": "是否最终指定的课题成果" }, "sort": { "type": "integer", "description": "排序" } } }, "ProfessionalAwardCourseware": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "author": { "type": "string", "description": "作者" }, "name": { "type": "string", "description": "课件名称" }, "level": { "type": "string", "description": "颁奖等级" }, "unit": { "type": "string", "description": "颁奖单位" }, "awardTime": { "type": "string", "description": "获奖时间" }, "awardImg": { "type": "string", "description": "获奖证书" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" } } }, "net.cyweb.cloud.stuwork.api.VO.ErrorApplySchoolStuVO": { "type": "object", "properties": { "stuNo": { "type": "string", "description": "学号\")" }, "stuName": { "type": "string", "description": "学生姓名\")" }, "deptCode": { "type": "string", "description": "系部代码\")" }, "startTime": { "type": "string", "description": "开始时间\")" }, "endTime": { "type": "string", "description": "结束时间\")" }, "classCode": { "type": "string", "description": "班级代码\")" }, "className": { "type": "string", "description": "班级简称\")" }, "deptName": { "type": "string", "description": "系部名称\")" }, "type": { "type": "string", "description": "类型 1 学生请假 2 班级请假\")" }, "reason": { "type": "string", "description": "请假原因\")" } }, "description": "net.cyweb.cloud.stuwork.api.VO.ErrorApplySchoolStuVO" }, "PurchasingCategoryTree": { "type": "object", "description": "采购品目树节点", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "code": { "type": "string" }, "parentCode": { "type": "string" }, "remark": { "type": "string" }, "children": { "type": "array", "items": { "$ref": "#/components/schemas/PurchasingCategoryTree" } } } }, "ScienceAchievementEnd": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "achievement": { "type": "string", "description": "成果名称" }, "type": { "type": "string", "description": "成果形式" }, "cate": { "type": "string", "description": "1 阶段成果 2 最终成果\n成果类别" }, "finishTime": { "type": "string", "description": "完成时间" }, "teacherNo": { "type": "string", "description": "负责人" }, "reportId": { "type": "string", "description": "课题ID" }, "realName": { "type": "string", "description": "姓名" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" }, "changeHistoryId": { "type": "string", "description": "课题变更Id" }, "isChoose": { "type": "string", "description": "是否最终指定的课题成果" } } }, "ProfessionalAwardCoursewareDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "" }, "author": { "type": "string", "description": "作者" }, "name": { "type": "string", "description": "课件名称" }, "level": { "type": "string", "description": "颁奖等级" }, "unit": { "type": "string", "description": "颁奖单位" }, "awardTime": { "type": "string", "description": "获奖时间" }, "awardImg": { "type": "string", "description": "获奖证书" }, "createBy": { "type": "string", "description": "创建人" }, "teacherNo": { "type": "string", "description": "" }, "teacherName": { "type": "string", "description": "" }, "remarks": { "type": "string", "description": "备注" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "state": { "type": "string", "description": "" }, "backReason": { "type": "string", "description": "" }, "year": { "type": "string", "description": "" }, "examType": { "type": "string", "description": "" }, "deptCode": { "type": "string", "description": "" } } }, "net.cyweb.cloud.stuwork.api.DTO.StuTurnoverRelationDTO": { "type": "object", "properties": { "stuNo": { "type": "string", "description": "" }, "id": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.StuTurnoverRelationDTO" }, "RListPurchasingCategoryTree": { "type": "object", "properties": { "code": { "type": "integer" }, "msg": { "type": "string" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/PurchasingCategoryTree" } } } }, "ChangeHistoryDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "" }, "reportId": { "type": "string", "description": "科研id" }, "type": { "type": "string", "description": "变更类型 1 课题名称 2 课题成员 3 结束时间" }, "originContent": { "type": "string", "description": "原始内容" }, "newContent": { "type": "string", "description": "变更后内容" }, "remarks": { "type": "string", "description": "备注" }, "memberList": { "type": "array", "items": { "$ref": "#/components/schemas/ScienceReportMemberEnd", "description": "课题组成员(课题变更时存入,结题时确认)" }, "description": "组员信息" }, "achieveAList": { "type": "array", "items": { "$ref": "#/components/schemas/ScienceAchievementEnd", "description": "课题研究成果(课题变更时存入,结题时确认)" }, "description": "阶段成果信息" }, "achieveBList": { "type": "array", "items": { "$ref": "#/components/schemas/ScienceAchievementEnd", "description": "课题研究成果(课题变更时存入,结题时确认)" }, "description": "最终成果信息" } } }, "TeacherBaseDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "工号" }, "realName": { "type": "string", "description": "姓名" }, "sex": { "type": "string", "description": "性别" }, "birthday": { "type": "string", "description": "生日" }, "national": { "type": "string", "description": "民族" }, "politicsStatus": { "type": "string", "description": "政治面貌主键" }, "idCard": { "type": "string", "description": "身份证号" }, "nativePlace": { "type": "string", "description": "籍贯" }, "birthPlace": { "type": "string", "description": "出生地" }, "health": { "type": "string", "description": "健康状况" }, "homePhone": { "type": "string", "description": "家庭电话" }, "telPhone": { "type": "string", "description": "电话" }, "telPhoneTwo": { "type": "string", "description": "手机号码" }, "homeAddress": { "type": "string", "description": "家庭地址" }, "speciality": { "type": "string", "description": "特长" }, "teacherPhoto": { "type": "string", "description": "照片" }, "deptCode": { "type": "string", "description": "二级部门代码" }, "inoutFlag": { "type": "string", "description": "是否允许进出" }, "inoutRemarks": { "type": "string", "description": "进出备注" }, "bankNo": { "type": "string", "description": "银行卡号" }, "bankOpen": { "type": "string", "description": "开户行" }, "commonDeptCode": { "type": "string", "description": "所属二级部门(通用)" }, "tied": { "type": "string", "description": "是否退休" }, "isWeekPwd": { "type": "string", "description": "是否弱密码" }, "teacherCate": { "type": "string", "description": "授课类型" }, "teacherClassify": { "type": "string", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)" }, "tiedYear": { "type": "string", "description": "退休年份" }, "religiousBelief": { "type": "string", "description": "宗教信仰" }, "stationId": { "type": "string", "description": "岗位信息关联主键" }, "stationDutyLevelId": { "type": "string", "description": "职务级别关联主键" }, "retireDate": { "type": "string", "description": "退休日期" }, "pfTitleId": { "type": "string", "description": "职称等级主键" }, "searchInfo": { "type": "string", "description": "教职工信息" }, "searchKeywords": { "type": "string", "description": "搜索关键词" }, "secDeptCode": { "type": "string", "description": "子部门代码" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "教职工" }, "deptCodeList": { "type": "array", "items": { "type": "string" }, "description": "部门代码集合" }, "roleCode": { "type": "string", "description": "角色代码" }, "atStation": { "type": "string", "description": "在岗累呗" } } }, "net.cyweb.cloud.stuwork.api.DTO.StuTurnoverDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "realName": { "type": "string", "description": "" }, "turnoverType": { "type": "string", "description": "异动类型" }, "oldClassCode": { "type": "string", "description": "原班级" }, "newClassCode": { "type": "string", "description": "现班级" }, "turnYear": { "type": "string", "description": "转制类型" }, "turnoverDate": { "type": "string", "description": "异动时间" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "phone": { "type": "string", "description": "电话号码" }, "deptCode": { "type": "string", "description": "" }, "isUnion": { "type": "string", "description": "" }, "stuList": { "type": "array", "description": "private List stuNos;", "items": { "type": "object", "properties": { "stuNo": { "type": "string", "description": "" }, "id": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.StuTurnoverRelationDTO" } }, "stuNoList": { "type": "array", "description": "", "items": { "type": "string" } }, "classCodeList": { "type": "array", "description": "", "items": { "type": "string" } }, "year": { "type": "string", "description": "" }, "graduYear": { "type": "string", "description": "" }, "daysValue": { "type": "integer", "description": "" }, "isUser": { "type": "boolean", "description": "" }, "key": { "type": "string", "description": "秘钥" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.StuTurnoverDTO" }, "PurchasingSpec": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "remark": { "type": "string", "description": "备注" }, "name": { "type": "string", "description": "特殊情况名称" }, "template": { "type": "string", "description": "需求模版下载URL或标识" } }, "description": "特殊情况表" }, "ScienceChangeHistory": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "reportId": { "type": "string", "description": "科研id" }, "type": { "type": "string", "description": "变更类型 1 课题名称 2 课题成员 3 结束时间\n变更类型" }, "originContent": { "type": "string", "description": "原始内容" }, "newContent": { "type": "string", "description": "变更后内容" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "passTime": { "type": "string", "description": "审核通过时间" }, "dealState": { "type": "string", "description": "0 待审核 1 部门审核 2 科研处审核 100 通过 -1 驳回\n处理状态" }, "materialUrl": { "type": "string", "description": "签字文件" }, "backReason": { "type": "string", "description": "驳回内容" }, "checkStatus": { "type": "string", "description": "签字确认状态 0 待确认 1 通过 -1 驳回\n签字确认状态" } } }, "ProfessionalTeacherAcademicRelation": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师工号" }, "qualificationConfigId": { "type": "string", "description": "学历" }, "degreeConfigId": { "type": "string", "description": "学位" }, "graduateTime": { "type": "string", "description": "毕业时间" }, "graduateSchool": { "type": "string", "description": "毕业学校" }, "major": { "type": "string", "description": "所学专业" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "qualificationImg": { "type": "string", "description": "学历证书附件" }, "degreeImg": { "type": "string", "description": "学位证书附件" }, "type": { "type": "string", "description": "类型" }, "state": { "type": "string", "description": "状态" }, "taskId": { "type": "string", "description": "任务id" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "degreeFullTimeTop": { "type": "string", "description": "学位是否全日制最高" }, "degreePartTimeTop": { "type": "string", "description": "学位是否非全日制最高" }, "degreeTop": { "type": "string", "description": "学位是否最高" }, "eduFullTimeTop": { "type": "string", "description": "学历是否全日制最高" }, "eduPartTimeTop": { "type": "string", "description": "学历是否非全日制最高" }, "eduTop": { "type": "string", "description": "学历是否最高" } } }, "net.cyweb.cloud.stuwork.api.VO.StuTurnoverVO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "realName": { "type": "string", "description": "学生姓名" }, "turnoverType": { "type": "string", "description": "异动类型" }, "oldClassCode": { "type": "string", "description": "原班级" }, "newClassCode": { "type": "string", "description": "现班级" }, "turnYear": { "type": "string", "description": "转制类型" }, "turnoverDate": { "type": "string", "description": "异动时间" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "phone": { "type": "string", "description": "电话号码" }, "deptCode": { "type": "string", "description": "" }, "isUnion": { "type": "string", "description": "" }, "turnoverDateStr": { "type": "string", "description": "异动时间文本" }, "procInsStatus": { "type": "string", "description": "流程状态" }, "auditStatus": { "type": "string", "description": "审核状态" }, "deptName": { "type": "string", "description": "系部名称" }, "stuNum": { "type": "integer", "description": "" }, "isUnionTxt": { "type": "string", "description": "" } }, "description": "数据" }, "ProfessionalSocial": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "title": { "type": "string", "description": "称谓" }, "realName": { "type": "string", "description": "姓名" }, "birthday": { "type": "string", "description": "出生年月" }, "politicsStatusId": { "type": "string", "description": "政治面貌" }, "workStation": { "type": "string", "description": "工作单位及职务" }, "teacherNo": { "type": "string", "description": "教师编号" } } }, "net.cyweb.cloud.stuwork.api.VO.StuConductForEmsVO": { "type": "object", "properties": { "totalScore": { "type": "number", "description": "" }, "schoolYear": { "type": "string", "description": "" }, "schoolTerm": { "type": "string", "description": "" }, "stuNo": { "type": "string", "description": "" }, "month": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.VO.StuConductForEmsVO" }, "ProfessionalTitleRelation": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师编号" }, "professionalTitleConfigId": { "type": "string", "description": "职称id" }, "changedTime": { "type": "string", "description": "变动时间" }, "certificateTime": { "type": "string", "description": "取证时间" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "evidence": { "type": "string", "description": "证明材料 字段内容为附件地址\n证明材料" }, "status": { "type": "integer", "description": "审核状态 0:待审核1:审核通过 -1:审核未通过\n审核状态" }, "majorStation": { "type": "string", "description": "专业技术职务" }, "inOfficeDate": { "type": "string", "description": "任职时间" }, "taskId": { "type": "string", "description": "任务id" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "isTop": { "type": "string", "description": "是否最高" } } }, "宿舍楼管理员": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "buildingNo": { "type": "string", "description": "楼号" }, "username": { "type": "string", "description": "管理员工号" } }, "description": "宿舍楼管理员" }, "ProfessionalQualificationRelation": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "qualificationConfigId": { "type": "string", "description": "关联资格等级id" }, "worker": { "type": "string", "description": "工种" }, "certificateTime": { "type": "string", "description": "取证时间" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "evidenceA": { "type": "string", "description": "证明材料1 字段内容为附件地址\n证明材料1" }, "evidenceB": { "type": "string", "description": "证明材料2 字段内容为附件地址\n证明材料2" }, "evidenceC": { "type": "string", "description": "证明材料3 字段内容为附件地址\n证明材料3" }, "teacherNo": { "type": "string", "description": "教师编号" }, "state": { "type": "string", "description": "状态" }, "taskId": { "type": "string", "description": "任务id" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "isTop": { "type": "string", "description": "是否最高" } } }, "学生校内请假明细": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "deptCode": { "type": "string", "description": "系部代码" }, "deptName": { "type": "string", "description": "系部名称" }, "classCode": { "type": "string", "description": "班号" }, "stuNo": { "type": "string", "description": "学号" }, "realName": { "type": "string", "description": "姓名" }, "teacherNo": { "type": "string", "description": "班主任工号" }, "teacherRealName": { "type": "string", "description": "班主任姓名" }, "groupId": { "type": "string", "description": "批次ID" }, "status": { "type": "string", "description": "状态" }, "inOut": { "type": "string", "description": "是否允许离校" }, "reason": { "type": "string", "description": "" } }, "description": "学生校内请假明细" }, "OuterCompanyEmployee": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "companyId": { "type": "string", "description": "公司ID" }, "companyName": { "type": "string", "description": "公司名称" }, "employeeNo": { "type": "string", "description": "职员编号" }, "realName": { "type": "string", "description": "姓名" }, "idCard": { "type": "string", "description": "身份证" }, "mobile": { "type": "string", "description": "手机号" }, "position": { "type": "string", "description": "职位" }, "address": { "type": "string", "description": "地址" }, "inoutFlag": { "type": "string", "description": "是否可进出 1:是 0: 否\n是否可进出" }, "companyType": { "type": "string", "description": "单位类型" }, "deptCode": { "type": "string", "description": "所属学院" } } }, "ProfessionalStationRelationVO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师编号" }, "stationTypeId": { "type": "string", "description": "岗位类别" }, "stationDutyLevelId": { "type": "string", "description": "职务级别" }, "stationLevel": { "type": "string", "description": "岗位级别" }, "stationDate": { "type": "string", "description": "任现岗位职级时间" }, "atStation": { "type": "string", "description": "在职情况" }, "dutyDesc": { "type": "string", "description": "职务" }, "retireDate": { "type": "string", "description": "退休年份" }, "workDate": { "type": "string", "description": "参加工作时间" }, "dutyDate": { "type": "string", "description": "干部职务任职时间" }, "employmentNature": { "type": "string", "description": "用工性质" }, "entryDutyDate": { "type": "string", "description": "进编时间" }, "entrySchoolDate": { "type": "string", "description": "进校时间" }, "teacherType": { "type": "string", "description": "教师类型" }, "branchId": { "type": "string", "description": "党支部" }, "teacherClassify": { "type": "string", "description": "0教师、1中层干部、2其他人员(管理工勤人员" } } }, "net.cyweb.cloud.stuwork.api.VO.qa.TeacherVO": { "type": "object", "properties": { "realName": { "type": "string", "description": "" }, "phone": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.VO.qa.TeacherVO" }, "RListOuterCompanyEmployee": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "校外单位职员" }, "description": "数据" } } }, "BaseInfoDTO": { "type": "object", "properties": { "baseInfo": { "$ref": "#/components/schemas/TeacherBaseDTO", "description": "" }, "dynamicItem": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalTeacherAcademicRelation", "description": "教师的学历学位关联表" }, "description": "学历学位关系表" }, "socialItem": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalSocial", "description": "社会关系" }, "description": "社会关系" }, "professionalItem": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalTitleRelation", "description": "人事职称人员关联表,一人可以有多个职称" }, "description": "职称" }, "workItem": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalQualificationRelation", "description": "人事职业资格人员关联表" }, "description": "职业资格" }, "professionalStationRelation": { "$ref": "#/components/schemas/ProfessionalStationRelationVO", "description": "岗位" }, "certificateNumberA": { "type": "string", "description": "高校教师资格证" }, "certificateNumberB": { "type": "string", "description": "中等教师资格证" }, "certificateNumberC": { "type": "string", "description": "教师上岗证" }, "id": { "type": "string", "description": "" }, "national": { "type": "string", "description": "" }, "nativePlace": { "type": "string", "description": "" }, "telPhone": { "type": "string", "description": "" }, "birthPlace": { "type": "string", "description": "" }, "speciality": { "type": "string", "description": "" }, "homeAddress": { "type": "string", "description": "" } } }, "学生教育经历": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "schoolName": { "type": "string", "description": "学校名称" }, "positionName": { "type": "string", "description": "任职情况" }, "startYearMonth": { "type": "string", "description": "开始年月" }, "endYearMonth": { "type": "string", "description": "结束年月" } }, "description": "学生教育经历" }, "OuterCompanyEmployeeSwitchDTO": { "type": "object", "properties": { "switchType": { "type": "string", "description": "" }, "list": { "type": "array", "items": { "type": "string" }, "description": "" } } }, "ProfessionalTeacherBase": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师编号" }, "realName": { "type": "string", "description": "真实姓名" }, "sex": { "type": "string", "description": "性别" }, "birthday": { "type": "string", "description": "生日" }, "national": { "type": "string", "description": "民族" }, "politicsStatus": { "type": "string", "description": "政治面貌" }, "idCard": { "type": "string", "description": "身份证号" }, "nativePlace": { "type": "string", "description": "籍贯" }, "birthPlace": { "type": "string", "description": "出生地" }, "health": { "type": "string", "description": "健康状况" }, "homePhone": { "type": "string", "description": "家庭电话" }, "telPhone": { "type": "string", "description": "电话" }, "telPhoneTwo": { "type": "string", "description": "手机号码" }, "homeAddress": { "type": "string", "description": "家庭地址" }, "speciality": { "type": "string", "description": "特长" }, "teacherPhoto": { "type": "string", "description": "照片" }, "deptCode": { "type": "string", "description": "归属部门" }, "inoutFlag": { "type": "string", "description": "是否允许进出" }, "inoutRemarks": { "type": "string", "description": "进出备注" }, "bankNo": { "type": "string", "description": "银行卡号" }, "bankOpen": { "type": "string", "description": "开户行" }, "commonDeptCode": { "type": "string", "description": "所属二级部门(通用)" }, "tied": { "type": "string", "description": "是否退休" }, "isWeekPwd": { "type": "string", "description": "是否弱密码" }, "teacherCate": { "type": "string", "description": "教师类别" }, "teacherClassify": { "type": "string", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)" }, "tiedYear": { "type": "string", "description": "退休年份" }, "religiousBelief": { "type": "string", "description": "宗教信仰" } } }, "学生主要社会关系": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "appellation": { "type": "string", "description": "称谓关系" }, "realName": { "type": "string", "description": "姓名" }, "idCard": { "type": "string", "description": "身份证号" }, "workAddress": { "type": "string", "description": "工作单位" }, "politicsStatus": { "type": "string", "description": "政治面貌" }, "health": { "type": "string", "description": "健康状况" } }, "description": "学生主要社会关系" }, "OuterCompany": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "companyName": { "type": "string", "description": "公司名称" }, "allowStartTime": { "type": "string", "description": "单位允许进出的时段(开始)" }, "allowEndTime": { "type": "string", "description": "单位允许进出的时段(结束)" }, "companyType": { "type": "string", "description": "单位类型 0: 驻校单位 1: 培训单位\n单位类型" }, "userName": { "type": "string", "description": "健康申报-管理员" }, "trainClassId": { "type": "string", "description": "关联 培训班级Id\n关联培训班级Id" }, "isSpecial": { "type": "string", "description": "外聘 驻校单位 不允许删除\n外聘驻校单位不允许删除" } } }, "TeacherAboutInfoDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "type": { "type": "string", "description": "类别" }, "fileListA": { "type": "array", "items": { "type": "string" }, "description": "附件" }, "fileListB": { "type": "array", "items": { "type": "string" }, "description": "附件" }, "teacherNo": { "type": "string", "description": "教师工号" }, "qualificationConfigId": { "type": "string", "description": "学历" }, "degreeConfigId": { "type": "string", "description": "学位" }, "graduateTime": { "type": "string", "description": "毕业时间" }, "graduateSchool": { "type": "string", "description": "毕业学校" }, "major": { "type": "string", "description": "所学专业" }, "qualificationImg": { "type": "string", "description": "学历证书附件" }, "degreeImg": { "type": "string", "description": "学位证书附件" }, "professionalTitleConfigId": { "type": "string", "description": "职称id" }, "majorStation": { "type": "string", "description": "" }, "inOfficeDate": { "type": "string", "description": "" }, "certificateTime": { "type": "string", "description": "取证时间" }, "changedTime": { "type": "string", "description": "变动时间" }, "evidence": { "type": "string", "description": "材料" }, "worker": { "type": "string", "description": "工种" }, "evidenceA": { "type": "string", "description": "证明材料1 字段内容为附件地址" }, "evidenceB": { "type": "string", "description": "证明材料2 字段内容为附件地址" }, "certificateConfId": { "type": "string", "description": "---------------------教师资格证-------------------------------" }, "honor": { "type": "string", "description": "荣誉" }, "honorCompany": { "type": "string", "description": "表彰单位" }, "year": { "type": "integer", "description": "年份" }, "newDeptCodeList": { "type": "array", "items": { "type": "string" }, "description": "现部门编码" }, "newDeptCode": { "type": "string", "description": "" }, "newSecDeptCode": { "type": "string", "description": "" }, "changeDate": { "type": "string", "description": "调令时间" }, "oldBranchName": { "type": "string", "description": "原党支部" }, "branchName": { "type": "string", "description": "现党支部名称" }, "feeTime": { "type": "string", "description": "党费交至几月" }, "changeTime": { "type": "string", "description": "变动时间" }, "educationType": { "type": "string", "description": "" }, "pos": { "type": "string", "description": "" }, "attachment": { "type": "string", "description": "综合表彰材料" } } }, "学生表": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "stuNo": { "type": "string", "description": "学号" }, "realName": { "type": "string", "description": "姓名" }, "gender": { "type": "string", "description": "性别0:女 1:男" }, "stuStatus": { "type": "integer", "description": "学生状态 1:在校 2:顶岗 3:离校 4:实习" }, "classCode": { "type": "string", "description": "所属班级" }, "enrollStatus": { "type": "string", "description": "学籍状态" }, "qrCode": { "type": "string", "description": "随机二维码" }, "isGradu": { "type": "string", "description": "是否毕业" }, "isClassLeader": { "type": "string", "description": "是否班干部" }, "graduTime": { "type": "string", "description": "毕业时间" }, "isInout": { "type": "string", "description": "是否允许进出" }, "classMasterName": { "type": "string", "description": "班主任名称" }, "classMasterCode": { "type": "string", "description": "班主任编码" }, "specialIn": { "type": "string", "description": "" }, "socialInsurance": { "type": "string", "description": "社保缴纳情况" }, "enrollNo": { "type": "string", "description": "学籍号" }, "enrollMiddleNo": { "type": "string", "description": "转段学籍号" }, "graduNo": { "type": "string", "description": "毕业证号" }, "faceExclude": { "type": "string", "description": "考勤忽略" }, "faceExcludeReason": { "type": "string", "description": "考勤忽略原因" }, "avatarAudit": { "type": "string", "description": "" }, "classStatus": { "type": "string", "description": "班级状态" }, "className": { "type": "string", "description": "" }, "deptCode": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "majorCode": { "type": "string", "description": "" }, "majorLevel": { "type": "string", "description": "" }, "education": { "type": "string", "description": "" }, "stuNos": { "type": "string", "description": "学号" }, "bankCard": { "type": "string", "description": "中职卡号" }, "gradeCurr": { "type": "integer", "description": "年级(计算结果)第几年了" }, "temporaryyeYear": { "type": "string", "description": "借读学年" }, "majorYears": { "type": "string", "description": "" }, "rewards": { "type": "string", "description": "奖惩情况" }, "evaluation": { "type": "string", "description": "自我评价" }, "appraisal": { "type": "string", "description": "毕业鉴定" }, "studentStatus": { "type": "string", "description": "" }, "nationName": { "type": "string", "description": "民族" }, "postalAddress": { "type": "string", "description": "通讯地址" }, "advantage": { "type": "string", "description": "特长" }, "liveAddress": { "type": "string", "description": "居住详细地址" }, "homeBirth": { "type": "string", "description": "家庭出身" }, "national": { "type": "string", "description": "民族" }, "politicsStatus": { "type": "string", "description": "政治面貌" }, "classNo": { "type": "string", "description": "" }, "stuNum": { "type": "integer", "description": "班级人数" }, "manStuNum": { "type": "integer", "description": "男人数" }, "girlStuNum": { "type": "integer", "description": "女人数" }, "borrowingStuNum": { "type": "integer", "description": "借读人数" }, "phone": { "type": "string", "description": "学生联系电话" }, "tel": { "type": "string", "description": "学生家长联系电话" }, "birthday": { "type": "string", "description": "生日" }, "idCard": { "type": "string", "description": "身份证" }, "teacherRealName": { "type": "string", "description": "班主任姓名" }, "teacherNo": { "type": "string", "description": "班主任工号" }, "initial": { "type": "string", "description": "姓名首字母" }, "roomNo": { "type": "string", "description": "房间号" }, "scoreOneMonth": { "type": "number", "description": "操行考核分数/月份" }, "scoreTwoMonth": { "type": "number", "description": "" }, "scoreThreeMonth": { "type": "number", "description": "" }, "scoreFourMonth": { "type": "number", "description": "" }, "scoreFiveMonth": { "type": "number", "description": "" }, "scoreOneTerm": { "type": "number", "description": "学期平均分" }, "scoreSixMonth": { "type": "number", "description": "" }, "scoreSevenMonth": { "type": "number", "description": "" }, "scoreEightMonth": { "type": "number", "description": "" }, "scoreNineMonth": { "type": "number", "description": "" }, "scoreTenMonth": { "type": "number", "description": "" }, "scoreTwoTerm": { "type": "number", "description": "第二学期平均分" }, "scoreYear": { "type": "number", "description": "学年平均分" }, "schoolYear": { "type": "string", "description": "" }, "schoolTerm": { "type": "string", "description": "" }, "majorName": { "type": "string", "description": "专业名称" }, "parentPhone": { "type": "string", "description": "家长电话" }, "photo": { "type": "string", "description": "" }, "qrStr": { "type": "string", "description": "" }, "month": { "type": "string", "description": "月份" }, "contactName": { "type": "string", "description": "被联系人" }, "contactType": { "type": "string", "description": "联系方式 1:电话 2:qq 3:微信 4:面谈" }, "contactContent": { "type": "string", "description": "联系内容" }, "contactDate": { "type": "string", "description": "联系时间" }, "grade": { "type": "string", "description": "" }, "content": { "type": "string", "description": "月报内容" }, "week": { "type": "string", "description": "周报" }, "reply": { "type": "string", "description": "回复" }, "isSpotCheck": { "type": "string", "description": "是否抽查" }, "comment": { "type": "string", "description": "评语" }, "parentalMsg": { "type": "string", "description": "" }, "fraction": { "type": "string", "description": "学期操行分" }, "strList": { "type": "array", "description": "", "items": { "type": "string" } }, "teacherPhone": { "type": "string", "description": "" }, "atHome": { "type": "integer", "description": "在籍" }, "atSchool": { "type": "integer", "description": "在校" }, "dgTotle": { "type": "integer", "description": "顶岗" }, "headImg": { "type": "string", "description": "照片" }, "userType": { "type": "string", "description": "" }, "educationDetails": { "type": "array", "description": "教育经历", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "schoolName": { "type": "string", "description": "学校名称" }, "positionName": { "type": "string", "description": "任职情况" }, "startYearMonth": { "type": "string", "description": "开始年月" }, "endYearMonth": { "type": "string", "description": "结束年月" } }, "description": "学生教育经历" } }, "socialDetails": { "type": "array", "description": "社会关系", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "appellation": { "type": "string", "description": "称谓关系" }, "realName": { "type": "string", "description": "姓名" }, "idCard": { "type": "string", "description": "身份证号" }, "workAddress": { "type": "string", "description": "工作单位" }, "politicsStatus": { "type": "string", "description": "政治面貌" }, "health": { "type": "string", "description": "健康状况" } }, "description": "学生主要社会关系" } }, "jldateRange1": { "type": "string", "description": "打印word 需要" }, "jldateEnd1": { "type": "string", "description": "结束时间" }, "jlschool1": { "type": "string", "description": "在何校读书" }, "jlworkAs1": { "type": "string", "description": "任何学生干部" }, "jldateRange2": { "type": "string", "description": "开始时间" }, "jldateEnd2": { "type": "string", "description": "结束时间" }, "jlschool2": { "type": "string", "description": "在何校读书" }, "jlworkAs2": { "type": "string", "description": "任何学生干部" }, "jldateRange3": { "type": "string", "description": "开始时间" }, "jldateEnd3": { "type": "string", "description": "结束时间" }, "jlschool3": { "type": "string", "description": "在何校读书" }, "jlworkAs3": { "type": "string", "description": "任何学生干部" }, "jldateRange4": { "type": "string", "description": "开始时间" }, "jldateEnd4": { "type": "string", "description": "结束时间" }, "jlschool4": { "type": "string", "description": "在何校读书" }, "jlworkAs4": { "type": "string", "description": "任何学生干部" }, "jldateRange5": { "type": "string", "description": "开始时间" }, "jldateEnd5": { "type": "string", "description": "结束时间" }, "jlschool5": { "type": "string", "description": "在何校读书" }, "jlworkAs5": { "type": "string", "description": "任何学生干部" }, "jcgx": { "type": "string", "description": "毕业登记相关" }, "jcgx2": { "type": "string", "description": "" }, "jcgx3": { "type": "string", "description": "" }, "jcgx4": { "type": "string", "description": "" }, "jcgx5": { "type": "string", "description": "" }, "jcxm": { "type": "string", "description": "家庭关系-姓名" }, "jcxm2": { "type": "string", "description": "" }, "jcxm3": { "type": "string", "description": "" }, "jcxm4": { "type": "string", "description": "" }, "jcxm5": { "type": "string", "description": "" }, "jczzmm": { "type": "string", "description": "政治面貌" }, "jczzmm2": { "type": "string", "description": "" }, "jczzmm3": { "type": "string", "description": "" }, "jczzmm4": { "type": "string", "description": "" }, "jczzmm5": { "type": "string", "description": "" }, "jcgzdw": { "type": "string", "description": "家庭关系-在何单位何职" }, "jcgzdw2": { "type": "string", "description": "" }, "jcgzdw3": { "type": "string", "description": "" }, "jcgzdw4": { "type": "string", "description": "" }, "jcgzdw5": { "type": "string", "description": "" }, "jcjkzk": { "type": "string", "description": "家庭关系-健康状况" }, "jcjkzk2": { "type": "string", "description": "" }, "jcjkzk3": { "type": "string", "description": "" }, "jcjkzk4": { "type": "string", "description": "" }, "jcjkzk5": { "type": "string", "description": "" }, "shcw": { "type": "string", "description": "社会关系-称谓" }, "shxm": { "type": "string", "description": "社会关系-姓名" }, "shzz": { "type": "string", "description": "社会关系-政治面貌" }, "shrz": { "type": "string", "description": "社会关系-任职" }, "shjk": { "type": "string", "description": "社会关系-健康" }, "shcw1": { "type": "string", "description": "社会关系-称谓" }, "shxm1": { "type": "string", "description": "社会关系-姓名" }, "shzz1": { "type": "string", "description": "社会关系-政治面貌" }, "shrz1": { "type": "string", "description": "社会关系-任职" }, "shjk1": { "type": "string", "description": "社会关系-健康" }, "shcw2": { "type": "string", "description": "社会关系-称谓" }, "shxm2": { "type": "string", "description": "社会关系-姓名" }, "shzz2": { "type": "string", "description": "社会关系-政治面貌" }, "shrz2": { "type": "string", "description": "社会关系-任职" }, "shjk2": { "type": "string", "description": "社会关系-健康" }, "shcw3": { "type": "string", "description": "社会关系-称谓" }, "shxm3": { "type": "string", "description": "社会关系-姓名" }, "shzz3": { "type": "string", "description": "社会关系-政治面貌" }, "shrz3": { "type": "string", "description": "社会关系-任职" }, "shjk3": { "type": "string", "description": "社会关系-健康" }, "currentGrade": { "type": "string", "description": "" } }, "description": "学生表" }, "RListProfessionalTeacherBase": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/ProfessionalTeacherBase", "description": "教职工基础信息表" }, "description": "数据" } } }, "留宿申请": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "stuNo": { "type": "string", "description": "学号" }, "liveType": { "type": "string", "description": "留宿类型" }, "liveDate": { "type": "string", "description": "留宿日期" }, "auditStatus": { "type": "string", "description": "审核状态" } }, "description": "留宿申请" }, "RVoid": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "description": "数据", "type": "null" } } }, "MapString": { "type": "object", "properties": { "key": { "type": "string" } } }, "java.util.Map": { "type": "object", "properties": { "key": { "type": "string" } }, "description": "java.util.Map" }, "TeacherBaseVO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师编号" }, "realName": { "type": "string", "description": "真实姓名" }, "sex": { "type": "string", "description": "性别" }, "birthday": { "type": "string", "description": "生日" }, "national": { "type": "string", "description": "民族" }, "politicsStatus": { "type": "string", "description": "政治面貌" }, "idCard": { "type": "string", "description": "身份证号" }, "nativePlace": { "type": "string", "description": "籍贯" }, "birthPlace": { "type": "string", "description": "出生地" }, "health": { "type": "string", "description": "健康状况" }, "homePhone": { "type": "string", "description": "家庭电话" }, "telPhone": { "type": "string", "description": "电话" }, "telPhoneTwo": { "type": "string", "description": "手机号码" }, "homeAddress": { "type": "string", "description": "家庭地址" }, "speciality": { "type": "string", "description": "特长" }, "teacherPhoto": { "type": "string", "description": "照片" }, "deptCode": { "type": "string", "description": "归属部门" }, "inoutFlag": { "type": "string", "description": "是否允许进出" }, "inoutRemarks": { "type": "string", "description": "进出备注" }, "bankNo": { "type": "string", "description": "银行卡号" }, "bankOpen": { "type": "string", "description": "开户行" }, "commonDeptCode": { "type": "string", "description": "所属二级部门(通用)" }, "tied": { "type": "string", "description": "是否退休" }, "isWeekPwd": { "type": "string", "description": "是否弱密码" }, "teacherCate": { "type": "string", "description": "教师类别" }, "teacherClassify": { "type": "string", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)" }, "tiedYear": { "type": "string", "description": "退休年份" }, "religiousBelief": { "type": "string", "description": "宗教信仰" }, "age": { "type": "string", "description": "年龄" }, "employmentNature": { "type": "string", "description": "用工性质" }, "dgreeName": { "type": "string", "description": "学历" }, "dgreeNameA": { "type": "string", "description": "学历" }, "deptName": { "type": "string", "description": "部门名称" }, "oldBranchId": { "type": "string", "description": "旧党支部" }, "isMaster": { "type": "string", "description": "教学任务中是否为主带老师" }, "teacherNos": { "type": "string", "description": "每个部门中的老师们工号" }, "initial": { "type": "string", "description": "姓名首字母大写" }, "stationLevelName": { "type": "string", "description": "岗位级别名称" }, "pfTitleId": { "type": "string", "description": "职称Id" }, "titleName": { "type": "string", "description": "职称名称" }, "workId": { "type": "string", "description": "职业资格等级" }, "workLevelName": { "type": "string", "description": "职业资格等级名称" }, "workName": { "type": "string", "description": "职业资格工种" }, "workInfo": { "type": "string", "description": "职业资格综合信息 工种id + 工种名称" }, "highCer": { "type": "string", "description": "高级教师资格证" }, "midCer": { "type": "string", "description": "中级教师资格证" }, "teacherCer": { "type": "string", "description": "普通教师资格证" }, "dutyDesc": { "type": "string", "description": "职务描述" }, "hasRole": { "type": "boolean", "description": "是否有角色" }, "stationDate": { "type": "string", "description": "当前职务级别任职时间" }, "stationTypeId": { "type": "string", "description": "职务类型主键" } } }, "net.cyweb.cloud.stuwork.api.DTO.BuildingTimePortion": { "type": "object", "properties": { "reserveDate": { "type": "string", "description": "使用日期" }, "timeId": { "type": "string", "description": "使用时间段" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.BuildingTimePortion" }, "OuterCompanyDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "companyName": { "type": "string", "description": "公司名称" }, "allowStartTime": { "type": "string", "description": "单位允许进出的时段(开始)" }, "allowEndTime": { "type": "string", "description": "单位允许进出的时段(结束)" }, "companyType": { "type": "string", "description": "单位类型 0: 驻校单位 1: 培训单位\n单位类型" }, "userName": { "type": "string", "description": "健康申报-管理员" }, "trainClassId": { "type": "string", "description": "关联 培训班级Id\n关联培训班级Id" }, "isSpecial": { "type": "string", "description": "外聘 驻校单位 不允许删除\n外聘驻校单位不允许删除" }, "allowTimeRange": { "type": "array", "items": { "type": "string" }, "description": "" }, "idList": { "type": "array", "items": { "type": "string" }, "description": "" }, "companyTypeList": { "type": "array", "items": { "type": "string" }, "description": "" }, "emp": { "type": "string", "description": "" } } }, "RMapString": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/MapString", "description": "数据" } } }, "net.cyweb.cloud.stuwork.api.DTO.StudentData": { "type": "object", "properties": { "realName": { "type": "string", "description": "" }, "stuNo": { "type": "string", "description": "" }, "roomNo": { "type": "string", "description": "" }, "stayDorm": { "type": "boolean", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.StudentData" }, "OuterCompanyEmployeeDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "companyId": { "type": "string", "description": "公司ID" }, "companyName": { "type": "string", "description": "公司名称" }, "employeeNo": { "type": "string", "description": "职员编号" }, "realName": { "type": "string", "description": "姓名" }, "idCard": { "type": "string", "description": "身份证" }, "mobile": { "type": "string", "description": "手机号" }, "position": { "type": "string", "description": "职位" }, "address": { "type": "string", "description": "地址" }, "inoutFlag": { "type": "string", "description": "是否可进出 1:是 0: 否\n是否可进出" }, "companyType": { "type": "string", "description": "单位类型" }, "deptCode": { "type": "string", "description": "所属学院" }, "companyTypeList": { "type": "array", "items": { "type": "string" }, "description": "" }, "companyIdList": { "type": "array", "items": { "type": "string" }, "description": "" } } }, "TeacherInfoDTO": { "type": "object", "properties": { "cateId": { "type": "string", "description": "" }, "teacherInfo": { "type": "string", "description": "" }, "outId": { "type": "string", "description": "" }, "tied": { "type": "string", "description": "" }, "tiedYear": { "type": "string", "description": "" }, "tiedYearList": { "type": "array", "items": { "type": "string" }, "description": "" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" } } }, "net.cyweb.cloud.stuwork.api.DTO.Segment": { "type": "object", "properties": { "startTime": { "type": "string", "description": "" }, "endTime": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.Segment" }, "ROuterCompanyEmployee": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/OuterCompanyEmployee", "description": "数据" } } }, "RListString": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "type": "string" }, "description": "数据" } } }, "net.cyweb.cloud.stuwork.api.DTO.DayRuleList": { "type": "object", "properties": { "startTime": { "type": "string", "description": "" }, "endTime": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.DayRuleList" }, "MapProfessionalTeacherBase": { "type": "object", "properties": { "key": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师编号" }, "realName": { "type": "string", "description": "真实姓名" }, "sex": { "type": "string", "description": "性别" }, "birthday": { "type": "string", "description": "生日" }, "national": { "type": "string", "description": "民族" }, "politicsStatus": { "type": "string", "description": "政治面貌" }, "idCard": { "type": "string", "description": "身份证号" }, "nativePlace": { "type": "string", "description": "籍贯" }, "birthPlace": { "type": "string", "description": "出生地" }, "health": { "type": "string", "description": "健康状况" }, "homePhone": { "type": "string", "description": "家庭电话" }, "telPhone": { "type": "string", "description": "电话" }, "telPhoneTwo": { "type": "string", "description": "手机号码" }, "homeAddress": { "type": "string", "description": "家庭地址" }, "speciality": { "type": "string", "description": "特长" }, "teacherPhoto": { "type": "string", "description": "照片" }, "deptCode": { "type": "string", "description": "归属部门" }, "inoutFlag": { "type": "string", "description": "是否允许进出" }, "inoutRemarks": { "type": "string", "description": "进出备注" }, "bankNo": { "type": "string", "description": "银行卡号" }, "bankOpen": { "type": "string", "description": "开户行" }, "commonDeptCode": { "type": "string", "description": "所属二级部门(通用)" }, "tied": { "type": "string", "description": "是否退休" }, "isWeekPwd": { "type": "string", "description": "是否弱密码" }, "teacherCate": { "type": "string", "description": "教师类别" }, "teacherClassify": { "type": "string", "description": "教师分类:0教师、1中层干部、2其他人员(管理工勤人员)" }, "tiedYear": { "type": "string", "description": "退休年份" }, "religiousBelief": { "type": "string", "description": "宗教信仰" } } } } }, "net.cyweb.cloud.stuwork.api.DTO.DayRule": { "type": "object", "properties": { "week": { "type": "string", "description": "" }, "weekNo": { "type": "string", "description": "" }, "dayRuleList": { "type": "array", "description": "", "items": { "type": "object", "properties": { "startTime": { "type": "string", "description": "" }, "endTime": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.DayRuleList" } } }, "description": "net.cyweb.cloud.stuwork.api.DTO.DayRule" }, "Map": { "type": "object", "properties": { "key": { "type": "null" } } }, "net.cyweb.cloud.stuwork.api.DTO.DormRuleList": { "type": "object", "properties": { "startTime": { "type": "string", "description": "" }, "endTime": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.DormRuleList" }, "RMap": { "type": "object", "properties": { "ok": { "type": "boolean" }, "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/Map", "description": "数据" } } }, "net.cyweb.cloud.stuwork.api.DTO.DormRule": { "type": "object", "properties": { "week": { "type": "string", "description": "" }, "weekNo": { "type": "string", "description": "" }, "dormRuleList": { "type": "array", "description": "", "items": { "type": "object", "properties": { "startTime": { "type": "string", "description": "" }, "endTime": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.DormRuleList" } } }, "description": "net.cyweb.cloud.stuwork.api.DTO.DormRule" }, "RListMap": { "type": "object", "properties": { "ok": { "type": "boolean" }, "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Map", "description": "java.util.Map" }, "description": "数据" } } }, "net.cyweb.cloud.stuwork.api.VO.StuPunlishClassVO": { "type": "object", "properties": { "deptCode": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "classCode": { "type": "string", "description": "" }, "classNo": { "type": "string", "description": "" }, "teacherNo": { "type": "string", "description": "" }, "teacherRealName": { "type": "string", "description": "" }, "jgNum": { "type": "string", "description": "" }, "lxNum": { "type": "string", "description": "" }, "txNum": { "type": "string", "description": "" }, "kcNum": { "type": "string", "description": "" }, "total": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.VO.StuPunlishClassVO" }, "RTeacherBaseVO": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/TeacherBaseVO", "description": "数据" } } }, "宿舍点名": { "type": "object", "properties": { "id": { "type": "string", "description": "id" }, "deptName": { "type": "string", "description": "deptName" }, "className": { "type": "string", "description": "className" }, "classCode": { "type": "string", "description": "classCode" }, "deptCode": { "type": "string", "description": "deptCode" }, "stuName": { "type": "string", "description": "stuName" }, "stuNo": { "type": "string", "description": "stuNo" }, "roomNo": { "type": "string", "description": "roomNo" }, "buildId": { "type": "string", "description": "buildId" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "tenantId": { "type": "integer", "description": "租户ID" }, "sign": { "type": "string", "description": "0 未到 1 已到" }, "type": { "type": "string", "description": "1 普通住宿点名 2 留宿点名" }, "date": { "type": "string", "description": "考勤日期\")" }, "zoneId": { "type": "integer", "description": "" }, "isFace": { "type": "string", "description": "是否扫过脸\")" }, "isApply": { "type": "string", "description": "是否请假\")" } }, "description": "宿舍点名" }, "DeptTeacherNumVO": { "type": "object", "properties": { "commonDeptCode": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "totalNum": { "type": "integer", "description": "" } } }, "RListTeacherBaseVO": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/TeacherBaseVO", "description": "net.cyweb.cloud.professional.api.vo.TeacherBaseVO" }, "description": "数据" } } }, "用户答题情况主表": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "themeId": { "type": "string", "description": "主题ID" }, "deptCode": { "type": "string", "description": "部门编码" }, "deptName": { "type": "string", "description": "部门名称" }, "classCode": { "type": "string", "description": "" }, "username": { "type": "string", "description": "用户名" }, "realName": { "type": "string", "description": "姓名" }, "age": { "type": "integer", "description": "年龄" }, "gender": { "type": "string", "description": "性别" }, "idCard": { "type": "string", "description": "身份证号码" }, "mobile": { "type": "string", "description": "手机号码" }, "homeAddress": { "type": "string", "description": "家庭住址" }, "temp": { "type": "number", "description": "体温" }, "heathImg": { "type": "string", "description": "健康码" }, "heathImgColor": { "type": "string", "description": "" }, "travelImg": { "type": "string", "description": "行程码" }, "travelImgColor": { "type": "string", "description": "" }, "vaccinesImg": { "type": "string", "description": "" }, "checkImg": { "type": "string", "description": "" }, "firstAudited": { "type": "string", "description": "" }, "secondAudited": { "type": "string", "description": "" }, "userType": { "type": "string", "description": "" }, "success_type": { "type": "string", "description": "" }, "middleHigh": { "type": "string", "description": "" }, "companyType": { "type": "string", "description": "" }, "commitmentImg": { "type": "string", "description": "承诺书" }, "healthCardImg": { "type": "string", "description": "健康申报卡" } }, "description": "用户答题情况主表" }, "RListDeptTeacherNumVO": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/DeptTeacherNumVO", "description": "net.cyweb.cloud.professional.api.vo.DeptTeacherNumVO" }, "description": "数据" } } }, "RLong": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "integer", "description": "数据", "format": "int64" } } }, "net.cyweb.cloud.stuwork.api.VO.QaUserThemeConditionVO": { "type": "object", "properties": { "userType": { "type": "string", "description": "" }, "firAudit": { "type": "string", "description": "" }, "username": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "realName": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.VO.QaUserThemeConditionVO" }, "DeptTeacherListVO": { "type": "object", "properties": { "commonDeptCode": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "totalNum": { "type": "integer", "description": "" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "teacherNos": { "type": "string", "description": "" } } }, "RString": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "string", "description": "数据" } } }, "net.cyweb.cloud.stuwork.api.DTO.qa.TempLogData": { "type": "object", "properties": { "date": { "type": "string", "description": "" }, "morning": { "type": "number", "description": "" }, "afternoon": { "type": "number", "description": "" }, "night": { "type": "number", "description": "" }, "otherFamliy": { "type": "string", "description": "" }, "content": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.qa.TempLogData" }, "RListDeptTeacherListVO": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/DeptTeacherListVO", "description": "net.cyweb.cloud.professional.api.vo.DeptTeacherListVO" }, "description": "数据" } } }, "ProfessionalTeacherHonor": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherName": { "type": "string", "description": "姓名" }, "teacherNo": { "type": "string", "description": "教师工号" }, "honor": { "type": "string", "description": "荣誉" }, "honorCompany": { "type": "string", "description": "表彰单位" }, "attachment": { "type": "string", "description": "证明材料" }, "year": { "type": "integer", "description": "年份" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" } } }, "net.cyweb.cloud.stuwork.api.DTO.qa.HolidayCity": { "type": "object", "properties": { "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "province": { "type": "string", "description": "" }, "city": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.qa.HolidayCity" }, "ProfessionalTeacherPaper": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "paperConfigId": { "type": "string", "description": "论文类型id" }, "title": { "type": "string", "description": "论文名称" }, "author": { "type": "string", "description": "作者" }, "secondAuthor": { "type": "string", "description": "第二作者" }, "nameOfPublication": { "type": "string", "description": "发表刊物名称" }, "dateOfPublication": { "type": "string", "description": "发表日期" }, "publicationsCompetentUnit": { "type": "string", "description": "刊物主办单位" }, "publicationsManageUnit": { "type": "string", "description": "刊物主管单位" }, "awardingUnit": { "type": "string", "description": "颁奖单位" }, "rewardLevel": { "type": "string", "description": "获奖等级" }, "rewardTime": { "type": "string", "description": "获奖时间" }, "state": { "type": "string", "description": "状态" }, "knowdgeImg": { "type": "string", "description": "知网 查验截图\n知网查验截图" }, "pubCover": { "type": "string", "description": "刊物封面" }, "cateImg": { "type": "string", "description": "目录页" }, "contentImg": { "type": "string", "description": "内容页" }, "awardImg": { "type": "string", "description": "获奖证书" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" } } }, "net.cyweb.cloud.stuwork.api.DTO.qa.Question": { "type": "object", "properties": { "questionId": { "type": "string", "description": "" }, "answerId": { "type": "string", "description": "" }, "answerExtraContent": { "type": "string", "description": "" }, "answerContent": { "type": "string", "description": "" }, "questionType": { "type": "string", "description": "" }, "questionTypeFlag": { "type": "string", "description": "" }, "holidayCityList": { "type": "array", "description": "", "items": { "type": "object", "properties": { "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "province": { "type": "string", "description": "" }, "city": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.qa.HolidayCity" } } }, "description": "net.cyweb.cloud.stuwork.api.DTO.qa.Question" }, "ProfessionalTeacherPaperDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "paperConfigId": { "type": "string", "description": "论文类型id" }, "title": { "type": "string", "description": "论文名称" }, "author": { "type": "string", "description": "作者" }, "secondAuthor": { "type": "string", "description": "第二作者" }, "nameOfPublication": { "type": "string", "description": "发表刊物名称" }, "dateOfPublication": { "type": "string", "description": "发表日期" }, "publicationsCompetentUnit": { "type": "string", "description": "刊物主办单位" }, "publicationsManageUnit": { "type": "string", "description": "刊物主管单位" }, "awardingUnit": { "type": "string", "description": "颁奖单位" }, "rewardLevel": { "type": "string", "description": "获奖等级" }, "rewardTime": { "type": "string", "description": "获奖时间" }, "state": { "type": "string", "description": "状态" }, "knowdgeImg": { "type": "string", "description": "知网 查验截图\n知网查验截图" }, "pubCover": { "type": "string", "description": "刊物封面" }, "cateImg": { "type": "string", "description": "目录页" }, "contentImg": { "type": "string", "description": "内容页" }, "awardImg": { "type": "string", "description": "获奖证书" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "" }, "year": { "type": "string", "description": "" }, "examType": { "type": "string", "description": "" }, "deptCode": { "type": "string", "description": "" }, "awardYear": { "type": "string", "description": "" } } }, "net.cyweb.cloud.stuwork.api.VO.RiskResultVO": { "type": "object", "properties": { "deptName": { "type": "string", "description": "" }, "classNo": { "type": "string", "description": "" }, "realName": { "type": "string", "description": "" }, "userType": { "type": "string", "description": "" }, "companyType": { "type": "string", "description": "" }, "phone": { "type": "string", "description": "" }, "username": { "type": "string", "description": "" }, "accessPeople": { "type": "string", "description": "" }, "accessDeptName": { "type": "string", "description": "" }, "travelProcStatus": { "type": "string", "description": "" }, "attachment": { "type": "string", "description": "核酸检测报告" }, "heathImg": { "type": "string", "description": "健康码" }, "travelImg": { "type": "string", "description": "行程码" }, "isTravel": { "type": "string", "description": "1 是否外出报备" }, "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "city": { "type": "string", "description": "" }, "returnStatus": { "type": "string", "description": "" }, "tenantId": { "type": "integer", "description": "" }, "masterPhone": { "type": "string", "description": "班主任号码\")" }, "masterName": { "type": "string", "description": "班主任姓名\")" } }, "description": "net.cyweb.cloud.stuwork.api.VO.RiskResultVO" }, "ProfessionalQualificationRelationDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "qualificationConfigId": { "type": "string", "description": "关联资格等级id" }, "worker": { "type": "string", "description": "工种" }, "certificateTime": { "type": "string", "description": "取证时间" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "evidenceA": { "type": "string", "description": "证明材料1 字段内容为附件地址\n证明材料1" }, "evidenceB": { "type": "string", "description": "证明材料2 字段内容为附件地址\n证明材料2" }, "evidenceC": { "type": "string", "description": "证明材料3 字段内容为附件地址\n证明材料3" }, "teacherNo": { "type": "string", "description": "教师编号" }, "state": { "type": "string", "description": "状态" }, "taskId": { "type": "string", "description": "任务id" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "姓名" } } }, "net.cyweb.cloud.stuwork.api.DTO.AcessVisitorHolidayCityDTO": { "type": "object", "properties": { "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "province": { "type": "string", "description": "" }, "city": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.AcessVisitorHolidayCityDTO" }, "ScienceStaticDTO": { "type": "object", "properties": { "year": { "type": "string", "description": "年份" }, "status": { "type": "string", "description": "状态" }, "commonDeptCode": { "type": "string", "description": "" } } }, "net.cyweb.cloud.stuwork.api.DTO.AcessVisitorQuesstionDTO": { "type": "object", "properties": { "questionId": { "type": "string", "description": "" }, "answerId": { "type": "string", "description": "" }, "answerExtraContent": { "type": "string", "description": "" }, "answerContent": { "type": "string", "description": "" }, "questionType": { "type": "string", "description": "" }, "questionTypeFlag": { "type": "string", "description": "" }, "holidayCityList": { "type": "array", "description": "", "items": { "type": "object", "properties": { "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "province": { "type": "string", "description": "" }, "city": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.AcessVisitorHolidayCityDTO" } } }, "description": "net.cyweb.cloud.stuwork.api.DTO.AcessVisitorQuesstionDTO" }, "ProfessionalMajorStation": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "majorStationName": { "type": "string", "description": "专业技术职务名称" } } }, "net.cyweb.cloud.stuwork.api.VO.ClassInspectionRankVO": { "type": "object", "properties": { "classNo": { "type": "string", "description": "" }, "smokeNum": { "type": "integer", "description": "" }, "noiseNum": { "type": "integer", "description": "" }, "totalNum": { "type": "integer", "description": "" }, "smokeRate": { "type": "number", "description": "" }, "noiseRate": { "type": "number", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.VO.ClassInspectionRankVO" }, "ProfessionalTitleRelationDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师编号" }, "professionalTitleConfigId": { "type": "string", "description": "" }, "changedTime": { "type": "string", "description": "变动时间" }, "certificateTime": { "type": "string", "description": "取证时间" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "evidence": { "type": "string", "description": "证明材料 字段内容为附件地址\n证明材料" }, "status": { "type": "integer", "description": "审核状态 0:待审核1:审核通过 -1:审核未通过\n审核状态" }, "majorStation": { "type": "string", "description": "" }, "inOfficeDate": { "type": "string", "description": "任职时间" }, "taskId": { "type": "string", "description": "任务id" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "" } } }, "日常巡检": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "classCode": { "type": "string", "description": "班级代码" }, "realName": { "type": "string", "description": "指定学生" }, "stuNo": { "type": "string", "description": "学号" }, "score": { "type": "number", "description": "分数" }, "note": { "type": "string", "description": "检查记录" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "recordTime": { "type": "string", "description": "记录时间" }, "teacherNo": { "type": "string", "description": "班主任工号" }, "processingResult": { "type": "string", "description": "处理结果" }, "classNo": { "type": "string", "description": "班级代码" }, "className": { "type": "string", "description": "班级名称" }, "deptCode": { "type": "string", "description": "部门编码" }, "deptName": { "type": "string", "description": "" }, "classMasterName": { "type": "string", "description": "" } }, "description": "日常巡检" }, "ProfessionalTeacherAcademicRelationDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师工号" }, "qualificationConfigId": { "type": "string", "description": "学历" }, "degreeConfigId": { "type": "string", "description": "学位" }, "graduateTime": { "type": "string", "description": "毕业时间" }, "graduateSchool": { "type": "string", "description": "毕业学校" }, "major": { "type": "string", "description": "所学专业" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "qualificationImg": { "type": "string", "description": "学历证书附件" }, "degreeImg": { "type": "string", "description": "学位证书附件" }, "type": { "type": "string", "description": "类型" }, "state": { "type": "string", "description": "状态" }, "taskId": { "type": "string", "description": "任务id" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "" } } }, "net.cyweb.cloud.stuwork.api.VO.DormRoomVO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "buildingNo": { "type": "string", "description": "楼号\")" }, "roomNo": { "type": "string", "description": "房间号\")" }, "roomType": { "type": "string", "description": "房间类型 0:女 1:男" }, "bedNum": { "type": "string", "description": "几人间" }, "isHaveAir": { "type": "string", "description": "是否装空调 0:未装 1:已装" }, "deptCode": { "type": "string", "description": "所属部门" }, "livedNum": { "type": "integer", "description": "" }, "dormdataType": { "type": "string", "description": "" }, "roomNoRemarks": { "type": "string", "description": "" }, "stuNo": { "type": "string", "description": "" }, "newRoomNo": { "type": "string", "description": "" }, "bedNo": { "type": "string", "description": "" }, "month": { "type": "string", "description": "" }, "buildId": { "type": "integer", "description": "楼号Id\")" } }, "description": "net.cyweb.cloud.stuwork.api.VO.DormRoomVO" }, "ProfessionalPartyBranch": { "type": "object", "properties": { "id": { "type": "string", "description": "编号" }, "delFlag": { "type": "string", "description": "删除标记" }, "name": { "type": "string", "description": "类别名字" }, "remarks": { "type": "string", "description": "备注信息" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "sort": { "type": "integer", "description": "排序" }, "tenantId": { "type": "integer", "description": "租户id" } } }, "net.cyweb.cloud.stuwork.api.VO.DormStudentForAtVO": { "type": "object", "properties": { "stuName": { "type": "string", "description": "学生信息\")" }, "phone": { "type": "string", "description": "电话\")" }, "stuNo": { "type": "string", "description": "学号\")" }, "className": { "type": "string", "description": "班级\")" }, "masterPhone": { "type": "string", "description": "班主任电话\")" }, "bedNo": { "type": "string", "description": "床号\")" }, "sign": { "type": "string", "description": "是否点过名\")" }, "isFace": { "type": "string", "description": "是否扫过脸\")" }, "isApply": { "type": "string", "description": "是否请假\")" }, "startTime": { "type": "string", "description": "请假开始时间\")" }, "endTime": { "type": "string", "description": "请假结束时间\")" }, "reason": { "type": "string", "description": "请假事由\")" } }, "description": "net.cyweb.cloud.stuwork.api.VO.DormStudentForAtVO" }, "ProfessionalTeacherStationChange": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherName": { "type": "string", "description": "教师姓名" }, "teacherNo": { "type": "string", "description": "教师工号" }, "oldDeptCode": { "type": "string", "description": "原部门编码" }, "oldDeptName": { "type": "string", "description": "原部门名称" }, "newDeptCode": { "type": "string", "description": "现部门编码" }, "newDeptName": { "type": "string", "description": "现部门名称" }, "changeDate": { "type": "string", "description": "调令时间" }, "pos": { "type": "string", "description": "岗位类型" } } }, "net.cyweb.cloud.stuwork.api.VO.StuLeaveApplyVO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "startTime": { "type": "string", "description": "请假开始时间" }, "endTime": { "type": "string", "description": "请假结束时间" }, "leaveType": { "type": "string", "description": "请假类型" }, "reason": { "type": "string", "description": "请假事由" }, "stayDorm": { "type": "string", "description": "是否住宿" }, "isFever": { "type": "string", "description": "是否发热" }, "classAudit": { "type": "string", "description": "班主任审核" }, "deptAudit": { "type": "string", "description": "基础部审核" }, "schoolAudit": { "type": "string", "description": "学工处审批" }, "rejectReason": { "type": "string", "description": "驳回原因" }, "procInsId": { "type": "string", "description": "流程实例ID" }, "procInsStatus": { "type": "string", "description": "流程审批状态" }, "isAffirmOk": { "type": "string", "description": "已和家长及学生本人确认,同意请假 0未确认 1确认" }, "deptCode": { "type": "string", "description": "" }, "classCode": { "type": "string", "description": "" }, "allowBy": { "type": "string", "description": "临时允许进出标记" }, "allowByName": { "type": "string", "description": "临时允许进出操作人姓名" }, "allowInout": { "type": "string", "description": "临时允许进出标记" }, "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": "走读生/住宿生" }, "timeDifference": { "type": "string", "description": "" }, "leaveDays": { "type": "integer", "description": "请假天数" }, "leaveNum": { "type": "integer", "description": "请假次数" }, "truantNum": { "type": "integer", "description": "旷课次数" }, "roomNo": { "type": "string", "description": "" }, "buildingNo": { "type": "string", "description": "" }, "startTimeLabel": { "type": "string", "description": "" }, "endTimeLabel": { "type": "string", "description": "" }, "canAllowInout": { "type": "boolean", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.VO.StuLeaveApplyVO" }, "ProfessionalTitleLevelConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "professionalTitle": { "type": "string", "description": "职称等级名称" }, "sort": { "type": "integer", "description": "排序" } } }, "net.cyweb.cloud.stuwork.api.VO.DormLiveApplyVO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "stuNo": { "type": "string", "description": "学号" }, "liveType": { "type": "string", "description": "留宿类型" }, "liveDate": { "type": "string", "description": "留宿日期" }, "auditStatus": { "type": "string", "description": "审核状态" }, "liveDates": { "type": "array", "description": "留宿日期", "items": { "type": "string" } }, "realName": { "type": "string", "description": "姓名" }, "classCode": { "type": "string", "description": "" }, "classNo": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "roomNo": { "type": "string", "description": "宿舍号" }, "buildingNo": { "type": "string", "description": "楼号" }, "bedNo": { "type": "string", "description": "床位号" } }, "description": "net.cyweb.cloud.stuwork.api.VO.DormLiveApplyVO" }, "ProfessionalQualificationConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "levelName": { "type": "string", "description": "等级名称" } } }, "net.cyweb.cloud.stuwork.api.DTO.ClassAssessmentSettleRelationDTO": { "type": "object", "properties": { "schoolYear": { "type": "string", "description": "" }, "schoolTearm": { "type": "string", "description": "" }, "classCode": { "type": "string", "description": "" }, "classNo": { "type": "string", "description": "" } }, "description": "net.cyweb.cloud.stuwork.api.DTO.ClassAssessmentSettleRelationDTO" }, "ProfessionalEmploymentNature": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "employmentNatureName": { "type": "string", "description": "用工性质名称" } } }, "访客记录表": { "type": "object", "properties": { "id": { "type": "string", "description": "id" }, "realName": { "type": "string", "description": "姓名" }, "phone": { "type": "string", "description": "电话号码" }, "unit": { "type": "string", "description": "单位" }, "endTime": { "type": "string", "description": "有效期" }, "startTime": { "type": "string", "description": "来访时间" }, "idCard": { "type": "string", "description": "身份证号码" }, "status": { "type": "string", "description": "0 待确认 1 确认完成" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "endDays": { "type": "string", "description": "有效时间" }, "deptName": { "type": "string", "description": "到访部门信息" }, "deptCode": { "type": "string", "description": "" }, "accessCode": { "type": "string", "description": "行程码" }, "healthCode": { "type": "string", "description": "" }, "idCardUrl": { "type": "string", "description": "" }, "uuid": { "type": "string", "description": "" }, "tripCode": { "type": "string", "description": "" }, "vaccinesImg": { "type": "string", "description": "" }, "homeAddress": { "type": "string", "description": "" }, "heathImgColor": { "type": "string", "description": "" }, "travelImgColor": { "type": "string", "description": "" }, "remarks": { "type": "string", "description": "" }, "avatar": { "type": "string", "description": "" }, "accessPeople": { "type": "string", "description": "" }, "accessPhone": { "type": "string", "description": "" }, "accessPeopleName": { "type": "string", "description": "" }, "carNo": { "type": "string", "description": "车牌号" }, "visitorType": { "type": "string", "description": "访客类型 0 正常访客 1 培训人员" }, "trainClassName": { "type": "string", "description": "培训单位" }, "isSpecial": { "type": "string", "description": "特殊标记是否需要 人工审核" }, "trainCompanyId": { "type": "string", "description": "" }, "backReason": { "type": "string", "description": "" }, "nuclePic": { "type": "string", "description": "" }, "deptType": { "type": "string", "description": "来访部门类型 1 部门 2 单位" }, "reason": { "type": "string", "description": "" } }, "description": "访客记录表" }, "ProfessionalPaperConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户ID" }, "sort": { "type": "integer", "description": "排序" }, "typeName": { "type": "string", "description": "论文类型名称" } } }, "学生违纪思想汇报": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "punlishId": { "type": "string", "description": "处分ID" }, "month": { "type": "string", "description": "月份" }, "attachment": { "type": "string", "description": "附件" }, "teacherReply": { "type": "string", "description": "班主任评语" } }, "description": "学生违纪思想汇报" }, "ProfessionalTeacherCertificateConf": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "cretificateName": { "type": "string", "description": "资格证名称" } } }, "学生请假": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标记" }, "tenantId": { "type": "integer", "description": "租户ID" }, "remarks": { "type": "string", "description": "备注" }, "stuNo": { "type": "string", "description": "学号" }, "schoolYear": { "type": "string", "description": "学年" }, "schoolTerm": { "type": "string", "description": "学期" }, "startTime": { "type": "string", "description": "请假开始时间" }, "endTime": { "type": "string", "description": "请假结束时间" }, "leaveType": { "type": "string", "description": "请假类型" }, "reason": { "type": "string", "description": "请假事由" }, "stayDorm": { "type": "string", "description": "是否住宿" }, "isFever": { "type": "string", "description": "是否发热" }, "classAudit": { "type": "string", "description": "班主任审核" }, "deptAudit": { "type": "string", "description": "基础部审核" }, "schoolAudit": { "type": "string", "description": "学工处审批" }, "rejectReason": { "type": "string", "description": "驳回原因" }, "procInsId": { "type": "string", "description": "流程实例ID" }, "procInsStatus": { "type": "string", "description": "流程审批状态" }, "isAffirmOk": { "type": "string", "description": "已和家长及学生本人确认,同意请假 0未确认 1确认" }, "deptCode": { "type": "string", "description": "" }, "classCode": { "type": "string", "description": "" }, "allowBy": { "type": "string", "description": "临时允许进出标记" }, "allowByName": { "type": "string", "description": "临时允许进出操作人姓名" }, "allowInout": { "type": "string", "description": "临时允许进出标记" }, "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": "学生请假" }, "ProfessionalTeachingMaterialConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "typeName": { "type": "string", "description": "类型名称" } } }, "ProfessionalStatusLockDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "politicsStatusId": { "type": "string", "description": "政治面貌id" }, "joinTime": { "type": "string", "description": "加入时间" }, "correctionTime": { "type": "string", "description": "转正时间" }, "teacherNo": { "type": "string", "description": "教师编号" }, "statusMap": { "$ref": "#/components/schemas/Map", "description": "" } } }, "ProfessionalTeachingMaterialDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "deptCode": { "type": "string", "description": "部门" }, "materialName": { "type": "string", "description": "教材名称" }, "materialConfigId": { "type": "string", "description": "教材类别配置id" }, "editor": { "type": "string", "description": "主编" }, "secondEditor": { "type": "string", "description": "副主编" }, "joinEditor": { "type": "string", "description": "参编" }, "words": { "type": "integer", "description": "编写字数 千字\n编写字数" }, "publishCompany": { "type": "string", "description": "出版单位" }, "publishTime": { "type": "string", "description": "出版时间" }, "state": { "type": "string", "description": "状态" }, "mateCover": { "type": "string", "description": "教材封面" }, "pubImg": { "type": "string", "description": "出版图片" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "isbn": { "type": "string", "description": "ISBN" }, "versionDate": { "type": "string", "description": "班次日期\n版本日期" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "" }, "year": { "type": "string", "description": "" }, "examType": { "type": "string", "description": "" } } }, "ProfessionalTeachingMaterial": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "deptCode": { "type": "string", "description": "部门" }, "materialName": { "type": "string", "description": "教材名称" }, "materialConfigId": { "type": "string", "description": "教材类别配置id" }, "editor": { "type": "string", "description": "主编" }, "secondEditor": { "type": "string", "description": "副主编" }, "joinEditor": { "type": "string", "description": "参编" }, "words": { "type": "integer", "description": "编写字数 千字\n编写字数" }, "publishCompany": { "type": "string", "description": "出版单位" }, "publishTime": { "type": "string", "description": "出版时间" }, "state": { "type": "string", "description": "状态" }, "mateCover": { "type": "string", "description": "教材封面" }, "pubImg": { "type": "string", "description": "出版图片" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "isbn": { "type": "string", "description": "ISBN" }, "versionDate": { "type": "string", "description": "班次日期\n版本日期" } } }, "ProfessionalTopicList": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "deptCode": { "type": "string", "description": "课题所属部门" }, "topicName": { "type": "string", "description": "课题名称" }, "topicLeader": { "type": "string", "description": "课题负责人" }, "topicJoiner": { "type": "string", "description": "课题参与人" }, "topicSourceConfigId": { "type": "string", "description": "课题来源配置id" }, "topicLevelConfigId": { "type": "string", "description": "课题级别配置id" }, "finishTime": { "type": "string", "description": "结题时间" }, "awardingUnit": { "type": "string", "description": "颁奖单位" }, "awardingLevel": { "type": "string", "description": "获奖等级" }, "otherImg": { "type": "string", "description": "其他资料" }, "conclusionBook": { "type": "string", "description": "结题证书" }, "conclusionReport": { "type": "string", "description": "结题报告" }, "projectApp": { "type": "string", "description": "立项申报书" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" } } }, "SalaryExportRecord": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "confirm": { "type": "string", "description": "确认导出薪资国税报税" }, "exportDate": { "type": "string", "description": "导出日期" }, "salaryYear": { "type": "integer", "description": "薪资年份" }, "salaryMonth": { "type": "integer", "description": "薪资月份" }, "tenantId": { "type": "integer", "description": "租户ID" } } }, "ProfessionalTopicListDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "deptCode": { "type": "string", "description": "课题所属部门" }, "topicName": { "type": "string", "description": "课题名称" }, "topicLeader": { "type": "string", "description": "课题负责人" }, "topicJoiner": { "type": "string", "description": "课题参与人" }, "topicSourceConfigId": { "type": "string", "description": "课题来源配置id" }, "topicLevelConfigId": { "type": "string", "description": "课题级别配置id" }, "finishTime": { "type": "string", "description": "结题时间" }, "awardingUnit": { "type": "string", "description": "颁奖单位" }, "awardingLevel": { "type": "string", "description": "获奖等级" }, "otherImg": { "type": "string", "description": "其他资料" }, "conclusionBook": { "type": "string", "description": "结题证书" }, "conclusionReport": { "type": "string", "description": "结题报告" }, "projectApp": { "type": "string", "description": "立项申报书" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "" } } }, "ProfessionalTeacherLesson": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "author": { "type": "string", "description": "作者" }, "name": { "type": "string", "description": "教案名称" }, "level": { "type": "string", "description": "颁奖等级" }, "unit": { "type": "string", "description": "颁奖单位" }, "awardTime": { "type": "string", "description": "获奖时间" }, "awardImg": { "type": "string", "description": "获奖证书" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" } } }, "RSalaryExportRecord": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/SalaryExportRecord", "description": "数据" } } }, "ProfessionalTeacherLessonDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "" }, "author": { "type": "string", "description": "作者" }, "name": { "type": "string", "description": "教案名称" }, "level": { "type": "string", "description": "颁奖等级" }, "unit": { "type": "string", "description": "颁奖单位" }, "awardTime": { "type": "string", "description": "获奖时间" }, "awardImg": { "type": "string", "description": "获奖证书" }, "createBy": { "type": "string", "description": "" }, "remarks": { "type": "string", "description": "备注" }, "teacherNo": { "type": "string", "description": "" }, "teacherName": { "type": "string", "description": "" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "state": { "type": "string", "description": "" }, "backReason": { "type": "string", "description": "" }, "year": { "type": "string", "description": "" }, "examType": { "type": "string", "description": "" }, "deptCode": { "type": "string", "description": "" } } }, "ScienceEndCheck": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "reportId": { "type": "string", "description": "课题ID" }, "realEndTime": { "type": "string", "description": "实际完成时间" }, "achievement": { "type": "string", "description": "课题成果描述" }, "achievementUrl": { "type": "string", "description": "课题成果附录" }, "reportValue": { "type": "string", "description": "课题成果的理论与实践价值" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" }, "scienceDeptRemarks": { "type": "string", "description": "科研处意见" }, "endFileUrl": { "type": "string", "description": "结题报告" }, "ecoProof": { "type": "string", "description": "经济效益证明" } } }, "ProfessionalPartyChange": { "type": "object", "properties": { "id": { "type": "string", "description": "编号" }, "changeTime": { "type": "string", "description": "变动时间" }, "remarks": { "type": "string", "description": "备注" }, "branchName": { "type": "string", "description": "支部名称" }, "teacherNo": { "type": "string", "description": "工号" }, "oldBranchName": { "type": "string", "description": "原党支部名称" }, "feeTime": { "type": "string", "description": "党费交至几月" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "tenantId": { "type": "integer", "description": "租户id" }, "delFlag": { "type": "string", "description": "删除标记" }, "partyFee": { "type": "number", "description": "党费" } } }, "ProfessionalTopicLevelConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "levelName": { "type": "string", "description": "课题等级名称" } } }, "ProfessionalAcademicQualificationsConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "qualificationName": { "type": "string", "description": "学历名称" } } }, "ProfessionalPatent": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "deptCode": { "type": "string", "description": "部门编码" }, "deptName": { "type": "string", "description": "部门名称" }, "title": { "type": "string", "description": "标题" }, "type": { "type": "string", "description": "类型" }, "firAuthor": { "type": "string", "description": "第一作者" }, "firAuthorName": { "type": "string", "description": "第一作者姓名" }, "belongPeople": { "type": "string", "description": "归属人" }, "belongPeopleName": { "type": "string", "description": "归属人姓名" }, "patentNo": { "type": "string", "description": "专利号" }, "cardNo": { "type": "string", "description": "证书号" }, "authTime": { "type": "string", "description": "授权时间" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" }, "materialUrl": { "type": "string", "description": "材料地址" }, "status": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" } } }, "RListOuterCompany": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/OuterCompany", "description": "校外单位" }, "description": "数据" } } }, "ProfessionalPatentDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "" }, "deptCode": { "type": "string", "description": "" }, "deptName": { "type": "string", "description": "" }, "title": { "type": "string", "description": "" }, "type": { "type": "string", "description": "" }, "firAuthor": { "type": "string", "description": "" }, "firAuthorName": { "type": "string", "description": "" }, "belongPeople": { "type": "string", "description": "" }, "belongPeopleName": { "type": "string", "description": "" }, "patentNo": { "type": "string", "description": "专利号" }, "cardNo": { "type": "string", "description": "证书号" }, "authTime": { "type": "string", "description": "授权时间" }, "materialUrl": { "type": "string", "description": "" }, "status": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "year": { "type": "string", "description": "" }, "examType": { "type": "string", "description": "" } } }, "ROuterCompany": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "$ref": "#/components/schemas/OuterCompany", "description": "数据" } } }, "ProfessionalAcademicDegreeConfig": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "degreeName": { "type": "string", "description": "学位名称" } } }, "RemoteAddCompanyDTO": { "type": "object", "properties": { "companyName": { "type": "string", "description": "单位名称" }, "startTime": { "type": "string", "description": "" }, "endTime": { "type": "string", "description": "" }, "trainClassId": { "type": "string", "description": "" } } }, "ProfessionalAtStation": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "atStationName": { "type": "string", "description": "类型名称" } } }, "ProfessionalTeacherCertificateRelation": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师工号" }, "certificateConfId": { "type": "string", "description": "关联资格证书" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "evidenceA": { "type": "string", "description": "证明材料1" }, "evidenceB": { "type": "string", "description": "证明材料2" }, "procInsId": { "type": "string", "description": "流程实例id" }, "procInsStatus": { "type": "integer", "description": "流程实例状态" }, "reason": { "type": "string", "description": "原因" }, "auditor": { "type": "string", "description": "审核人" }, "auditTime": { "type": "string", "description": "审核时间" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "isTop": { "type": "string", "description": "是否最高" } } }, "TeacherSalary": { "type": "object", "properties": { "id": { "type": "string", "description": "编号" }, "userName": { "type": "string", "description": "姓名" }, "postSalary": { "type": "number", "description": "岗位工资" }, "payWage": { "type": "number", "description": "薪级工资" }, "studentPay": { "type": "number", "description": "见习期工资" }, "liveAllowance": { "type": "number", "description": "生活补贴" }, "postAllowance": { "type": "number", "description": "岗位津贴" }, "houseSubsidies": { "type": "number", "description": "住房(租金)补贴" }, "newHouseSubsidies": { "type": "number", "description": "新职工住房补贴" }, "huiSubsidies": { "type": "number", "description": "回民补贴" }, "oldSubsidies": { "type": "number", "description": "养老保险补贴" }, "ageAllowance": { "type": "number", "description": "教龄津贴" }, "specialSubsidies": { "type": "number", "description": "特教补贴" }, "teacherAllowance": { "type": "number", "description": "特级教师津贴" }, "sPostAllowance1": { "type": "number", "description": "特岗津贴(一)" }, "sPostAllowance2": { "type": "number", "description": "特岗津贴(二)" }, "other": { "type": "number", "description": "其他" }, "meritPay": { "type": "number", "description": "奖励性绩效工资" }, "villageSubsidies": { "type": "number", "description": "乡镇工作补贴" }, "temporarySubsidies": { "type": "number", "description": "临时性补贴" }, "trafficSubsidies": { "type": "number", "description": "上下班交通补贴" }, "keepAllowance": { "type": "number", "description": "保留津贴" }, "retroactivePay": { "type": "number", "description": "补发工资" }, "shouldPay": { "type": "number", "description": "应发工资" }, "houseFund": { "type": "number", "description": "住房公积金" }, "medicalInsurance": { "type": "number", "description": "医疗保险金" }, "unemployInsurance": { "type": "number", "description": "失业保险金" }, "endowInsurance": { "type": "number", "description": "养老保险金" }, "unionFee": { "type": "number", "description": "工会费" }, "childrenWhole": { "type": "number", "description": "儿童统筹" }, "personalTax": { "type": "number", "description": "个人所得税" }, "otherDeduction": { "type": "number", "description": "其他扣款" }, "sickDeduction": { "type": "number", "description": "病事假扣款" }, "medicalFund": { "type": "number", "description": "医疗救助基金" }, "inductrialInjury": { "type": "number", "description": "工伤" }, "personalPay": { "type": "number", "description": "个人补缴" }, "withhold": { "type": "number", "description": "代扣小计" }, "realWage": { "type": "number", "description": "实发工资" }, "nf": { "type": "string", "description": "年份" }, "yf": { "type": "string", "description": "月份 不补零\n月份" }, "idCard": { "type": "string", "description": "身份证号" }, "wageIncome": { "type": "number", "description": "工资收入" }, "trainPool": { "type": "number", "description": "培训兼课金" }, "otherIncome1": { "type": "number", "description": "其他收入(一)" }, "otherIncome2": { "type": "number", "description": "其他收入(二)" }, "insurance": { "type": "number", "description": "五险一金" }, "otherDeduction2": { "type": "number", "description": "其他扣款2" }, "deductionCost": { "type": "number", "description": "减除费用" }, "remark": { "type": "string", "description": "备注" }, "delFlag": { "type": "string", "description": "删除标记" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "ny": { "type": "string", "description": "年月" }, "pMonth": { "type": "string", "description": "月份" }, "numId": { "type": "string", "description": "导入序号" }, "childEdu": { "type": "number", "description": "子女教育" }, "conEdu": { "type": "number", "description": "继续教育" }, "sickMedical": { "type": "number", "description": "大病医疗" }, "house": { "type": "number", "description": "住房贷款利息或者住房租金" }, "supportOld": { "type": "number", "description": "赡养老人" }, "houseInterest": { "type": "number", "description": "累计住房贷款利息" }, "normalView": { "type": "string", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资" }, "tenantId": { "type": "integer", "description": "租户id" }, "teacherNo": { "type": "string", "description": "教师编号" }, "scienceMoney": { "type": "number", "description": "科研经费" }, "vacationMoney": { "type": "number", "description": "假期工资" }, "shouldTaxMoney": { "type": "number", "description": "基础工资应税收入" }, "baseSalary": { "type": "number", "description": "基础专项绩效" } } }, "ProfessionalTeacherCertificateRelationDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "createBy": { "type": "string", "description": "创建人" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新人" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "remarks": { "type": "string", "description": "备注" }, "tenantId": { "type": "integer", "description": "租户id" }, "sort": { "type": "integer", "description": "排序" }, "teacherNo": { "type": "string", "description": "教师工号" }, "certificateConfId": { "type": "string", "description": "关联资格证书" }, "certificateNumber": { "type": "string", "description": "证书编号" }, "evidenceA": { "type": "string", "description": "证明材料1" }, "evidenceB": { "type": "string", "description": "证明材料2" }, "procInsId": { "type": "string", "description": "流程实例id" }, "procInsStatus": { "type": "integer", "description": "流程实例状态" }, "reason": { "type": "string", "description": "原因" }, "auditor": { "type": "string", "description": "审核人" }, "auditTime": { "type": "string", "description": "审核时间" }, "state": { "type": "string", "description": "状态" }, "backReason": { "type": "string", "description": "驳回理由" }, "backBy": { "type": "string", "description": "驳回人" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "realName": { "type": "string", "description": "" } } }, "ProfessionalSalariesDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "编号" }, "userName": { "type": "string", "description": "姓名" }, "postSalary": { "type": "number", "description": "岗位工资" }, "payWage": { "type": "number", "description": "薪级工资" }, "studentPay": { "type": "number", "description": "见习期工资" }, "liveAllowance": { "type": "number", "description": "生活补贴" }, "postAllowance": { "type": "number", "description": "岗位津贴" }, "houseSubsidies": { "type": "number", "description": "住房(租金)补贴" }, "newHouseSubsidies": { "type": "number", "description": "新职工住房补贴" }, "huiSubsidies": { "type": "number", "description": "回民补贴" }, "oldSubsidies": { "type": "number", "description": "养老保险补贴" }, "ageAllowance": { "type": "number", "description": "教龄津贴" }, "specialSubsidies": { "type": "number", "description": "特教补贴" }, "teacherAllowance": { "type": "number", "description": "特级教师津贴" }, "sPostAllowance1": { "type": "number", "description": "特岗津贴(一)" }, "sPostAllowance2": { "type": "number", "description": "特岗津贴(二)" }, "other": { "type": "number", "description": "其他" }, "meritPay": { "type": "number", "description": "奖励性绩效工资" }, "villageSubsidies": { "type": "number", "description": "乡镇工作补贴" }, "temporarySubsidies": { "type": "number", "description": "临时性补贴" }, "trafficSubsidies": { "type": "number", "description": "上下班交通补贴" }, "keepAllowance": { "type": "number", "description": "保留津贴" }, "retroactivePay": { "type": "number", "description": "补发工资" }, "shouldPay": { "type": "number", "description": "应发工资" }, "houseFund": { "type": "number", "description": "住房公积金" }, "medicalInsurance": { "type": "number", "description": "医疗保险金" }, "unemployInsurance": { "type": "number", "description": "失业保险金" }, "endowInsurance": { "type": "number", "description": "养老保险金" }, "unionFee": { "type": "number", "description": "工会费" }, "childrenWhole": { "type": "number", "description": "儿童统筹" }, "personalTax": { "type": "number", "description": "个人所得税" }, "otherDeduction": { "type": "number", "description": "其他扣款" }, "sickDeduction": { "type": "number", "description": "病事假扣款" }, "medicalFund": { "type": "number", "description": "医疗救助基金" }, "inductrialInjury": { "type": "number", "description": "工伤" }, "personalPay": { "type": "number", "description": "个人补缴" }, "withhold": { "type": "number", "description": "代扣小计" }, "realWage": { "type": "number", "description": "实发工资" }, "nf": { "type": "string", "description": "年份" }, "yf": { "type": "string", "description": "月份 不补零\n月份" }, "idCard": { "type": "string", "description": "身份证号" }, "wageIncome": { "type": "number", "description": "工资收入" }, "trainPool": { "type": "number", "description": "培训兼课金" }, "otherIncome1": { "type": "number", "description": "其他收入(一)" }, "otherIncome2": { "type": "number", "description": "其他收入(二)" }, "insurance": { "type": "number", "description": "五险一金" }, "otherDeduction2": { "type": "number", "description": "其他扣款2" }, "deductionCost": { "type": "number", "description": "减除费用" }, "remark": { "type": "string", "description": "备注" }, "delFlag": { "type": "string", "description": "删除标记" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "ny": { "type": "string", "description": "年月" }, "pMonth": { "type": "string", "description": "月份" }, "numId": { "type": "string", "description": "导入序号" }, "childEdu": { "type": "number", "description": "子女教育" }, "conEdu": { "type": "number", "description": "继续教育" }, "sickMedical": { "type": "number", "description": "大病医疗" }, "house": { "type": "number", "description": "住房贷款利息或者住房租金" }, "supportOld": { "type": "number", "description": "赡养老人" }, "houseInterest": { "type": "number", "description": "累计住房贷款利息" }, "normalView": { "type": "string", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资" }, "tenantId": { "type": "integer", "description": "租户id" }, "teacherNo": { "type": "string", "description": "教师编号" }, "scienceMoney": { "type": "number", "description": "科研经费" }, "vacationMoney": { "type": "number", "description": "假期工资" }, "shouldTaxMoney": { "type": "number", "description": "基础工资应税收入" }, "baseSalary": { "type": "number", "description": "基础专项绩效" }, "realName": { "type": "string", "description": "" }, "stationTypeId": { "type": "string", "description": "" }, "idCardList": { "type": "array", "items": { "type": "string" }, "description": "" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "" }, "selectList": { "type": "array", "items": { "$ref": "#/components/schemas/TeacherSalary", "description": "工资表" }, "description": "" }, "canSearch": { "type": "string", "description": "" }, "money": { "type": "string", "description": "" }, "month": { "type": "string", "description": "" }, "year": { "type": "string", "description": "" }, "moneyType": { "type": "string", "description": "" }, "a": { "type": "string", "description": "" }, "b": { "type": "string", "description": "" }, "c": { "type": "string", "description": "" }, "d": { "type": "string", "description": "" }, "e": { "type": "string", "description": "" }, "f": { "type": "string", "description": "" }, "g": { "type": "string", "description": "" }, "h": { "type": "string", "description": "" }, "i": { "type": "string", "description": "" }, "j": { "type": "string", "description": "" }, "k": { "type": "string", "description": "" }, "l": { "type": "string", "description": "" }, "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "countType": { "type": "string", "description": "" }, "exportType": { "type": "string", "description": "" }, "clearTypeList": { "type": "array", "items": { "type": "string" }, "description": "" }, "yff": { "type": "string", "description": "" } } }, "TeacherPayslip": { "type": "object", "properties": { "id": { "type": "string", "description": "编号" }, "userName": { "type": "string", "description": "姓名" }, "postSalary": { "type": "number", "description": "岗位工资" }, "payWage": { "type": "number", "description": "薪级工资" }, "studentPay": { "type": "number", "description": "见习期工资" }, "liveAllowance": { "type": "number", "description": "生活补贴" }, "postAllowance": { "type": "number", "description": "岗位津贴" }, "houseSubsidies": { "type": "number", "description": "住房(租金)补贴" }, "newHouseSubsidies": { "type": "number", "description": "新职工住房补贴" }, "huiSubsidies": { "type": "number", "description": "回民补贴" }, "oldSubsidies": { "type": "number", "description": "养老保险补贴" }, "ageAllowance": { "type": "number", "description": "教龄津贴" }, "specialSubsidies": { "type": "number", "description": "特教补贴" }, "teacherAllowance": { "type": "number", "description": "特级教师津贴" }, "sPostAllowance1": { "type": "number", "description": "特岗津贴(一)" }, "sPostAllowance2": { "type": "number", "description": "特岗津贴(二)" }, "other": { "type": "number", "description": "其他" }, "meritPay": { "type": "number", "description": "奖励性绩效工资" }, "villageSubsidies": { "type": "number", "description": "乡镇工作补贴" }, "temporarySubsidies": { "type": "number", "description": "临时性补贴" }, "trafficSubsidies": { "type": "number", "description": "上下班交通补贴" }, "keepAllowance": { "type": "number", "description": "保留津贴" }, "retroactivePay": { "type": "number", "description": "补发工资" }, "shouldPay": { "type": "number", "description": "应发工资" }, "houseFund": { "type": "number", "description": "住房公积金" }, "medicalInsurance": { "type": "number", "description": "医疗保险金" }, "unemployInsurance": { "type": "number", "description": "失业保险金" }, "endowInsurance": { "type": "number", "description": "养老保险金" }, "unionFee": { "type": "number", "description": "工会费" }, "childrenWhole": { "type": "number", "description": "儿童统筹" }, "personalTax": { "type": "number", "description": "个人所得税" }, "otherDeduction": { "type": "number", "description": "其他扣款" }, "sickDeduction": { "type": "number", "description": "病事假扣款" }, "medicalFund": { "type": "number", "description": "医疗救助基金" }, "inductrialInjury": { "type": "number", "description": "工伤" }, "personalPay": { "type": "number", "description": "个人补缴" }, "withhold": { "type": "number", "description": "代扣小计" }, "realWage": { "type": "number", "description": "实发工资" }, "nf": { "type": "string", "description": "年份" }, "yf": { "type": "string", "description": "月份 不补零\n月份" }, "idCard": { "type": "string", "description": "身份证号" }, "wageIncome": { "type": "number", "description": "工资收入" }, "trainPool": { "type": "number", "description": "培训兼课金" }, "otherIncome1": { "type": "number", "description": "其他收入(一)" }, "otherIncome2": { "type": "number", "description": "其他收入(二)" }, "insurance": { "type": "number", "description": "五险一金" }, "otherDeduction2": { "type": "number", "description": "其他扣款2" }, "deductionCost": { "type": "number", "description": "减除费用" }, "remark": { "type": "string", "description": "备注" }, "delFlag": { "type": "string", "description": "删除标记" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "ny": { "type": "string", "description": "年月" }, "pMonth": { "type": "string", "description": "月份" }, "numId": { "type": "string", "description": "导入序号" }, "childEdu": { "type": "number", "description": "子女教育" }, "conEdu": { "type": "number", "description": "继续教育" }, "sickMedical": { "type": "number", "description": "大病医疗" }, "house": { "type": "number", "description": "住房贷款利息或者住房租金" }, "supportOld": { "type": "number", "description": "赡养老人" }, "houseInterest": { "type": "number", "description": "累计住房贷款利息" }, "normalView": { "type": "string", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资" }, "tenantId": { "type": "integer", "description": "租户id" }, "teacherNo": { "type": "string", "description": "教师编号" }, "scienceMoney": { "type": "number", "description": "科研经费" }, "vacationMoney": { "type": "number", "description": "假期工资" }, "shouldTaxMoney": { "type": "number", "description": "基础工资应税收入" }, "baseSalary": { "type": "number", "description": "基础性绩效" } } }, "ProfessionalPayslipDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "编号" }, "userName": { "type": "string", "description": "姓名" }, "postSalary": { "type": "number", "description": "岗位工资" }, "payWage": { "type": "number", "description": "薪级工资" }, "studentPay": { "type": "number", "description": "见习期工资" }, "liveAllowance": { "type": "number", "description": "生活补贴" }, "postAllowance": { "type": "number", "description": "岗位津贴" }, "houseSubsidies": { "type": "number", "description": "住房(租金)补贴" }, "newHouseSubsidies": { "type": "number", "description": "新职工住房补贴" }, "huiSubsidies": { "type": "number", "description": "回民补贴" }, "oldSubsidies": { "type": "number", "description": "养老保险补贴" }, "ageAllowance": { "type": "number", "description": "教龄津贴" }, "specialSubsidies": { "type": "number", "description": "特教补贴" }, "teacherAllowance": { "type": "number", "description": "特级教师津贴" }, "sPostAllowance1": { "type": "number", "description": "特岗津贴(一)" }, "sPostAllowance2": { "type": "number", "description": "特岗津贴(二)" }, "other": { "type": "number", "description": "其他" }, "meritPay": { "type": "number", "description": "奖励性绩效工资" }, "villageSubsidies": { "type": "number", "description": "乡镇工作补贴" }, "temporarySubsidies": { "type": "number", "description": "临时性补贴" }, "trafficSubsidies": { "type": "number", "description": "上下班交通补贴" }, "keepAllowance": { "type": "number", "description": "保留津贴" }, "retroactivePay": { "type": "number", "description": "补发工资" }, "shouldPay": { "type": "number", "description": "应发工资" }, "houseFund": { "type": "number", "description": "住房公积金" }, "medicalInsurance": { "type": "number", "description": "医疗保险金" }, "unemployInsurance": { "type": "number", "description": "失业保险金" }, "endowInsurance": { "type": "number", "description": "养老保险金" }, "unionFee": { "type": "number", "description": "工会费" }, "childrenWhole": { "type": "number", "description": "儿童统筹" }, "personalTax": { "type": "number", "description": "个人所得税" }, "otherDeduction": { "type": "number", "description": "其他扣款" }, "sickDeduction": { "type": "number", "description": "病事假扣款" }, "medicalFund": { "type": "number", "description": "医疗救助基金" }, "inductrialInjury": { "type": "number", "description": "工伤" }, "personalPay": { "type": "number", "description": "个人补缴" }, "withhold": { "type": "number", "description": "代扣小计" }, "realWage": { "type": "number", "description": "实发工资" }, "nf": { "type": "string", "description": "年份" }, "yf": { "type": "string", "description": "月份 不补零\n月份" }, "idCard": { "type": "string", "description": "身份证号" }, "wageIncome": { "type": "number", "description": "工资收入" }, "trainPool": { "type": "number", "description": "培训兼课金" }, "otherIncome1": { "type": "number", "description": "其他收入(一)" }, "otherIncome2": { "type": "number", "description": "其他收入(二)" }, "insurance": { "type": "number", "description": "五险一金" }, "otherDeduction2": { "type": "number", "description": "其他扣款2" }, "deductionCost": { "type": "number", "description": "减除费用" }, "remark": { "type": "string", "description": "备注" }, "delFlag": { "type": "string", "description": "删除标记" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "ny": { "type": "string", "description": "年月" }, "pMonth": { "type": "string", "description": "月份" }, "numId": { "type": "string", "description": "导入序号" }, "childEdu": { "type": "number", "description": "子女教育" }, "conEdu": { "type": "number", "description": "继续教育" }, "sickMedical": { "type": "number", "description": "大病医疗" }, "house": { "type": "number", "description": "住房贷款利息或者住房租金" }, "supportOld": { "type": "number", "description": "赡养老人" }, "houseInterest": { "type": "number", "description": "累计住房贷款利息" }, "normalView": { "type": "string", "description": "普通教职工是否可以查看工资 1:可以 0 : 不可以\n普通教职工是否可以查看工资" }, "tenantId": { "type": "integer", "description": "租户id" }, "teacherNo": { "type": "string", "description": "教师编号" }, "scienceMoney": { "type": "number", "description": "科研经费" }, "vacationMoney": { "type": "number", "description": "假期工资" }, "shouldTaxMoney": { "type": "number", "description": "基础工资应税收入" }, "baseSalary": { "type": "number", "description": "基础性绩效" }, "realName": { "type": "string", "description": "姓名" }, "stationTypeId": { "type": "string", "description": "岗位类别配置主键" }, "idCardList": { "type": "array", "items": { "type": "string" }, "description": "证件集合" }, "teacherNoList": { "type": "array", "items": { "type": "string" }, "description": "工号集合" }, "selectList": { "type": "array", "items": { "$ref": "#/components/schemas/TeacherPayslip", "description": "工资条" }, "description": "" }, "canSearch": { "type": "string", "description": "" }, "money": { "type": "string", "description": "" }, "month": { "type": "string", "description": "" }, "year": { "type": "string", "description": "" }, "moneyType": { "type": "string", "description": "" }, "a": { "type": "string", "description": "" }, "b": { "type": "string", "description": "" }, "c": { "type": "string", "description": "" }, "d": { "type": "string", "description": "" }, "e": { "type": "string", "description": "" }, "f": { "type": "string", "description": "" }, "g": { "type": "string", "description": "" }, "h": { "type": "string", "description": "" }, "i": { "type": "string", "description": "" }, "j": { "type": "string", "description": "" }, "k": { "type": "string", "description": "" }, "l": { "type": "string", "description": "" }, "startDate": { "type": "string", "description": "" }, "endDate": { "type": "string", "description": "" }, "countType": { "type": "string", "description": "" }, "exportType": { "type": "string", "description": "" }, "clearTypeList": { "type": "array", "items": { "type": "string" }, "description": "" }, "yff": { "type": "string", "description": "" } } }, "ScienceMidCheck": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "reportId": { "type": "string", "description": "课题ID" }, "mainAdvance": { "type": "string", "description": "主要进展情况" }, "mainAchievement": { "type": "string", "description": "主要阶段性成果" }, "nextPlan": { "type": "string", "description": "下一步研究工作安排" }, "existProblem": { "type": "string", "description": "存在的问题及对策" }, "otherDesc": { "type": "string", "description": "其他需要说明的事项" }, "preEndTime": { "type": "string", "description": "预计结题时间" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" } } }, "ScienceReportMember": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "reportId": { "type": "string", "description": "课题ID" }, "teacherNo": { "type": "string", "description": "教师编号" }, "realName": { "type": "string", "description": "姓名" }, "researchSkill": { "type": "string", "description": "研究专长" }, "isLeader": { "type": "string", "description": "0 非主持人 1 主持人\n是否主持人" }, "divideWork": { "type": "string", "description": "分工" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" }, "deptName": { "type": "string", "description": "部门名称" }, "deptCode": { "type": "string", "description": "部门代码" }, "commonDeptCode": { "type": "string", "description": "二级部门" }, "commonDeptName": { "type": "string", "description": "二级部门名称" }, "mainPaper": { "type": "string", "description": "主要论著" }, "type": { "type": "string", "description": "1 校内 2 校外\n类型" }, "xl": { "type": "string", "description": "学历" }, "zc": { "type": "string", "description": "职称" }, "sex": { "type": "string", "description": "性别" }, "birthDay": { "type": "string", "description": "出生年月" }, "xw": { "type": "string", "description": "学位" }, "phone": { "type": "string", "description": "电话" }, "xzzw": { "type": "string", "description": "行政职务" }, "sort": { "type": "integer", "description": "组员排序" } } }, "ScienceAchievement": { "type": "object", "properties": { "id": { "type": "string", "description": "主键" }, "achievement": { "type": "string", "description": "成果名称" }, "type": { "type": "string", "description": "成果形式" }, "cate": { "type": "string", "description": "1 阶段成果 2 最终成果\n成果类别" }, "finishTime": { "type": "string", "description": "完成时间" }, "teacherNo": { "type": "string", "description": "负责人" }, "reportId": { "type": "string", "description": "课题ID" }, "realName": { "type": "string", "description": "姓名" }, "createBy": { "type": "string", "description": "创建者" }, "createTime": { "type": "string", "description": "创建时间" }, "updateBy": { "type": "string", "description": "更新者" }, "updateTime": { "type": "string", "description": "更新时间" }, "delFlag": { "type": "string", "description": "删除标志位" }, "tenantId": { "type": "integer", "description": "租户id" } } }, "ScienceReportDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "ID" }, "title": { "type": "string", "description": "课题名称" }, "type": { "type": "string", "description": "1 指令性课题 2 其他课题" }, "startTime": { "type": "string", "description": "研究开始时间" }, "endTime": { "type": "string", "description": "研究完成时间" }, "contentA": { "type": "string", "description": "课题核心概念与界定" }, "contentB": { "type": "string", "description": "国内外统一研究领域现状与研究价值" }, "contentC": { "type": "string", "description": "研究的目标、内容(或子课题设计)与重点" }, "contentD": { "type": "string", "description": "研究的思路、过程与方法" }, "contentE": { "type": "string", "description": "主要观点与可能的创新之处" }, "contentF": { "type": "string", "description": "完成研究任务的可行性分析" }, "contractPhone": { "type": "string", "description": "联系电话" }, "reportUser": { "type": "string", "description": "主持人" }, "reportUserType": { "type": "string", "description": "主持人类型 1 校内 2 校外" }, "reportUserName": { "type": "string", "description": "主持人姓名" }, "researchSkill": { "type": "string", "description": "研究专长" }, "memberList": { "type": "array", "items": { "$ref": "#/components/schemas/ScienceReportMember", "description": "课题组成员" }, "description": "组员信息" }, "achieveAList": { "type": "array", "items": { "$ref": "#/components/schemas/ScienceAchievement", "description": "课题研究成果" }, "description": "阶段成果信息" }, "achieveBList": { "type": "array", "items": { "$ref": "#/components/schemas/ScienceAchievement", "description": "课题研究成果" }, "description": "最终成果信息" }, "mainPaper": { "type": "string", "description": "" }, "reportType": { "type": "string", "description": "类型" }, "reportTypeDetail": { "type": "string", "description": "明细" }, "status": { "type": "string", "description": "" }, "auditStatus": { "type": "string", "description": "" }, "score": { "type": "number", "description": "" }, "remarks": { "type": "string", "description": "" }, "scienceNo": { "type": "string", "description": "" }, "backReason": { "type": "string", "description": "" }, "xl": { "type": "string", "description": "学历" }, "zc": { "type": "string", "description": "职称" }, "sex": { "type": "string", "description": "性别" }, "birthDay": { "type": "string", "description": "出生年月" }, "xw": { "type": "string", "description": "学位" }, "phone": { "type": "string", "description": "电话" }, "xzzw": { "type": "string", "description": "行政职务" }, "midCheckUrl": { "type": "string", "description": "中期检查URL" }, "endCheckUrl": { "type": "string", "description": "结题鉴定URL" }, "changeTitleUrl": { "type": "string", "description": "课题变更URL" }, "cancleUrl": { "type": "string", "description": "撤销申请URl" }, "openUrl": { "type": "string", "description": "开题材料" }, "endCerUrl": { "type": "string", "description": "结题证书" }, "changeId": { "type": "string", "description": "变更Id" }, "year": { "type": "string", "description": "" }, "level": { "type": "string", "description": "" }, "scienceComment": { "type": "string", "description": "" }, "endStatus": { "type": "string", "description": "" }, "projectCheckUrl": { "type": "string", "description": "立项申报书" }, "deptCode": { "type": "string", "description": "" }, "otherOptionType": { "type": "string", "description": "" }, "midProjectContract": { "type": "string", "description": "课题研究合同书" }, "endProof": { "type": "string", "description": "结题证明" }, "ecoProof": { "type": "string", "description": "经济效益证明" } } }, "ScienceChangeHistoryDTO": { "type": "object", "properties": { "id": { "type": "string", "description": "" }, "type": { "type": "string", "description": "变更类型 1 部门审核 2 科研处审核" }, "backReason": { "type": "string", "description": "备注" }, "auditStatus": { "type": "string", "description": "审核状态" } } } }, "responses": {}, "securitySchemes": {} }, "servers": [], "security": [] }