🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 学生课表 **简要描述:** * 学生课表 **请求URL:** * /course_arranging/findPageByWeekStudent **请求方式:** * POST **参数:** | 参数名 | 必选 | 类型 | 说明 | | --- | --- | --- | --- | | student_id| 是 | int | 学生id | | start_date| 是 | string | 开始日期 (2021-03-08)| | end_date| 是 | string | 结束日期 (2021-03-15)| **返回示例** ``` { "code": "200", "msg": "success", "data": [ { "id": "15", "school_id": "1", "classes_id": "3", "type": "1", "start_date": "2021-03-19", "end_type": "1", "end_date": "0000-00-00", "start_time": "15:00", "end_time": "15:30", "jump_holiday": "1", "class_date": "0000-00-00", "classes_name": "数学班级", "course_name": "数学课", "course_id": "3", "teacher_name": "刘凯", "classroom_name": "教室1", "default_class_period": "1", "weeks": "3" }, { "id": "7", "school_id": "1", "classes_id": "3", "type": "2", "start_date": "0000-00-00", "end_type": "1", "end_date": "0000-00-00", "start_time": "14:00", "end_time": "15:00", "jump_holiday": "1", "weeks": "4", "class_date": "2021-03-18", "classes_name": "数学班级", "course_name": "数学课", "course_id": "3", "teacher_name": "刘凯", "classroom_name": "教室1", "default_class_period": "1" }, { "id": "8", "school_id": "1", "classes_id": "3", "type": "2", "start_date": "0000-00-00", "end_type": "1", "end_date": "0000-00-00", "start_time": "14:00", "end_time": "15:00", "jump_holiday": "1", "weeks": "5", "class_date": "2021-03-19", "classes_name": "数学班级", "course_name": "数学课", "course_id": "3", "teacher_name": "刘凯", "classroom_name": "教室1", "default_class_period": "1" }, { "id": "9", "school_id": "1", "classes_id": "3", "type": "2", "start_date": "0000-00-00", "end_type": "1", "end_date": "0000-00-00", "start_time": "14:00", "end_time": "15:00", "jump_holiday": "1", "weeks": "6", "class_date": "2021-03-20", "classes_name": "数学班级", "course_name": "数学课", "course_id": "3", "teacher_name": "刘凯", "classroom_name": "教室1", "default_class_period": "1" }, { "id": "10", "school_id": "1", "classes_id": "3", "type": "2", "start_date": "0000-00-00", "end_type": "1", "end_date": "0000-00-00", "start_time": "14:00", "end_time": "15:00", "jump_holiday": "1", "weeks": "0", "class_date": "2021-03-21", "classes_name": "数学班级", "course_name": "数学课", "course_id": "3", "teacher_name": "刘凯", "classroom_name": "教室1", "default_class_period": "1" } ] } ```