lipengjava

get teacher record list

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