# 学生请假系统后端 **Repository Path**: firestar01/studentls ## Basic Information - **Project Name**: 学生请假系统后端 - **Description**: 学生请假系统后端,基于ssm框架 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-26 - **Last Updated**: 2021-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Apex:基于ssm框架的学生请假系统微信小程序后端 ## 简介 - **此代码严禁外泄** **此代码严禁外泄** **此代码严禁外泄**内有大量团队内部信息包括后端数据库等敏感数据,若有分享请联系负责人。 - 此代码是基于ssm框架,maven管理的web后端工程,数据库使用MySQL - 构建部分笔记详见buffzhou.github.io ,ssm系列教程 - 由buff管理WeChat:buffdewechat,团队Apex ## api(至此版本) 以此进入api:http://139.196.4.70:8080/studentls/api/ ---- ### 单个人按照日期查表的api |getCourseListForPage|按页数给课程表| |----- |-----| |pageNum|页数| |pageSize|每页大小| |startTime|开始时间| |endTime|结束时间| 示例:http://139.196.4.70:8080/studentls/api/getCourseList?pageNum=1&pageSize=3&startTime=2020-04-09&endTime=2020-04-09 - data - total 此页总数 - list - pageNum页面编号 - pageSize 页面最大数 - id课程编号 - courseName课程名 - teacherName老师名 - time时间(周) - teacherNo老师编号 - startTime 开始上课时间 - endTime 结束上课时间 示例: ```json { "resultCode": "200", "resultMsg": null, "data": { "total": 1, "list": [ { "pageNum": 0, "pageSize": 10, "id": "1", "courseName": "电磁场与电磁波", "teacherName": "胡斌杰", "time": "星期一(1-2节)1-2周,4-17周", "teacherNo": "1", "startTime": null, "endTime": null } ] } } ``` ---- ### 查学生信息(学号)的api |getStudentInfoBysno|内容| |----- |-----| |sno|学号| 示例:http://139.196.4.70:8080/studentls/api/getStudentInfoBysno?sno=20183625 - data - sno 示例: ```json { "resultCode": "200", "resultMsg": null, "data": { "id": "2e42551c-9438-4e21-93c3-9d5f55d5a5b6", "adno": "", "acno": 3306, "speriod": "2018", "sclass": 5, "sno": "20183625", "sname": "buff", "ssex": 1, "stel": 19, "semail": "buffdemail@163.com", "userId": "1" } } ```