get_teacher_record_list.js
2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* @api {post} /3m/meeting/getTeacherRecordList.do 30.查询老师的录制列表
* @apiName getTeacherRecordList
* @apiGroup meeting
* @apiVersion 1.6.0
* @apiDescription 查询老师的课堂录制列表
*
* @apiParam {String} siteId 站点标识
* @apiParam {String} userId 老师的 id
* @apiParam {String} [beginTime] 开始日期。格式:YYYY-MM-DD HH:MM:SS
* @apiParam {String} [endTime] 结束日期。格式:YYYY-MM-DD HH:MM:SS
* @apiParam {int} pageNo 第几页,大于总页数时,自动设置为1
* @apiParam {int} pgeSize=20 每页显示多少条
* @apiParam {Long} timestamp 时间戳
* @apiParam {String} authId MD5(key+siteId+timestamp)
*
* @apiParamExample {xml} 请求示例
<?xml version="1.0" encoding="UTF-8"?>
<param>
<siteId>shanghai</siteId>
<userId>1</userId>
<beginTime>2000-01-01 00:00:00</beginTime>
<endTime>2000-02-01 00:00:00</endTime>
<pageNo>1</pageNo>
<pageSize>20</pageSize>
<timestamp>1392032123210</timestamp>
<authId>4297f44b13955235245b2497399d7a93</authId>
</param>
*
* @apiSuccess {int} errorCode
* 0:正常 <br/>
* 1:siteId 错误,站点不存在或已删除 <br/>
* 2:站点未到生效日期 <br/>
* 3: 站点过期 <br/>
* 4:authId 错误 <br/>
* 6:timestamp 超时 <br/>
* 7:userId 不能为空 <br/>
* 10:报文格式错误 <br/>
* @apiSuccess {int} pageNo 传入的值
* @apiSuccess {int} pageSize 传入的值
* @apiSuccess {int} recordCount 总记录数
* @apiSuccess {List} recordList 录制列表
* @apiSuccess {Object} recordList.recordInfo 录制对象
* @apiSuccess {String} recordList.recordInfo.userId 录制人的ID
* @apiSuccess {String} recordList.recordInfo.userName 录制人的姓名
* @apiSuccess {String} recordList.recordInfo.mtgTitle 课堂主题
* @apiSuccess {String} recordList.recordInfo.startTime 录制开始时间
* @apiSuccess {String} recordList.recordInfo.endTime 录制结束时间
* @apiSuccess {String} recordList.recordInfo.configFile 录制文件名
*
* @apiSuccessExample {xml} 返回示例
<?xml version=“1.0” encoding="UTF-8"?>
<result>
<errorCode>0</errorCode>
<pageNo>6</pageNo>
<pageSize>30</pageSize>
<recordCount>1<recordCount >
<recordList>
<recordInfo>
<userId>12000232</userId>
<userName>ChinaBj001</userName>
<mtgTitle>shanghai</mtgTitle>
<startTime>2013-09-11 14:02:05</startTime
<endTime>2013-09-11 14:15:47</endTime>
<configFile>67303217_983041_2014-11-3-9-42-44.xml</configFile>
</recordInfo>
</recordList >
</result>
*
*/