get_document_list.js
2.8 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
71
72
73
74
/**
* @api {post} /3m/meeting/get_document_list.do 22.查询站点的文档列表
* @apiName get_document_list
* @apiGroup doc
* @apiVersion 1.6.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>
*
*/