/** * @api {post} /3m/meeting/get_document_list.do 22.查询站点的文档列表 * @apiName get_document_list * @apiGroup doc * @apiVersion 2.1.0 * @apiDescription 查询站点的文档列表 * * @apiParam {String} siteId 站点标识 * @apiParam {Long} timestamp 时间戳 * @apiParam {String} authId MD5(key+siteId+timestamp), 其中 key 为与系统约定的加密 key * @apiParam {String} beginTime 开始日期。格式:YYYY-MM-DD HH:MM:SS * @apiParam {String} endTime 结束日期。格式:YYYY-MM-DD HH:MM:SS * @apiParam {String} [name] 文档名称 * * @apiParamExample {xml} 请求示例 <?xml version="1.0" encoding="UTF-8"?> <param> <siteId>admin</siteId> <beginTime>2017-02-01 00:00:00</beginTime> <endTime>2017-02-22 00:00:00</endTime> <name></name> <timestamp>1487756351064</timestamp> <authId>6f584b3a816c1405107ddd657e95292b</authId> </param> * * @apiSuccess {int} errorCode * 0:正常 <br/> * 1:siteId 错误 <br/> * 2:站点未到生效日期 <br/> * 3:站点过期 <br/> * 4:authId 错误 <br/> * 5:authId 不能重复使用 <br/> * 6:timestamp 超时 <br/> * 10:报文格式错误 <br/> * 11:beginTime 格式错误 <br/> * 12:endTime 格式错误 <br/> * 13:endTime 在 beginTime 之前 <br/> * @apiSuccess {int} documentCount * @apiSuccess {Array} documentList * @apiSuccess {Object} documentList.documentInfo * @apiSuccess {String} documentList.documentInfo.userName 上传者用户名 * @apiSuccess {String} documentList.documentInfo.startTime 上传开始时间 * @apiSuccess {String} documentList.documentInfo.endTime 上传结束时间 * @apiSuccess {int} documentList.documentInfo.status 文档的状态 * 0:上传中 <br/> * 1:上传完毕 <br/> * 2:处理中 <br/> * 3: 发布成功 <br/> * 4:取消 <br/> * 5:删除 <br/> * 6:失败 <br/> * @apiSuccess {String} documentList.documentInfo.name 文档名称 * @apiSuccess {String} documentList.documentInfo.ID id * * @apiSuccessExample {xml} 返回示例 <?xml version=“1.0” encoding="UTF-8"?> <result> <errorCode>0</errorCode> <beginTime>2013-12-01 00:00:00</beginTime> <endTime>2013-12-31 00:00:00</endTime> <documentCount>321</documentCount> <documentList> <documentInfo> <userName>ChinaBj001</userName> <startTime>2013-09-11 14:02:05</startTime> <endTime>2013-09-11 14:15:47</endTime> <status>0</status> <name>ChinaBj</name> <ID>shanghai_2014-11-3-9-42-44</ID> </documentInfo> </documentList > </result> * */