学生签到

当前版本:

    version= V1.0

接口功能:

    用于三方系统调用接口为学生进行上课签到。

接口地址:

    /api/v1/weekTable/studentSign

请求方式:

POST

请求参数:

Body

参数名必选类型说明
classIDString班级ID
signDateString签到日期(格式:yyyy-MM-dd)
sectionIndexInt节次  >0
studentListList<Map<String,String>>签到学生信息列表(非空)

studentList参数要求


参数名必选类型说明
studentIDString学生ID
signTimeString签到时间:yyyy-MM-dd HH:mm:ss

返回值说明

返回值字段类型说明
msgString提示信息
codeInt200成功,其它失败
dataString

返回结果示例(JSON)

  • 返回成功

{

    "success": true,

    "code": 200,

    "msg": "Success",

    "data": null

}

  • 返回失败

  {

    "msg":"具体错误原因",

    "code":-999

  }

版本变更说明:

    无