/** * @api {post} /3m/meeting/get_record_list.do 12.查询课堂的录制列表 * @apiName get_record_list * @apiGroup classroom * @apiVersion 2.1.0 * @apiDescription 查询某个课堂的录制列表 * * @apiParam {String} siteId 站点标识 * @apiParam {String} mtgKey 课堂的唯一标识 * @apiParam {int} pageNo 第几页,大于总页数时,自动设置为1 * @apiParam {int} pgeSize=20 每页显示多少条 * @apiParam {Long} timestamp 时间戳 * @apiParam {String} authId MD5(key+siteId+mtgKey+timestamp) * * @apiParamExample {xml} 请求示例 <?xml version="1.0" encoding="UTF-8"?> <param> <siteId>shanghai</siteId> <mtgKey>10002321</mtgKey> <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:mtgKey 不存在 <br/> * 10:报文格式错误 <br/> * @apiSuccess {String} mtgKey 传入的值 * @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> <mtgKey>10002321</mtgKey> <pageNo>6</pageNo> <pageSize>30</pageSize> <recordCount>3<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> * */