|
@@ -9,61 +9,67 @@
|
|
|
|---- |:---|:---|:----:|
|
|
|
| code | string | yes | 编码 |
|
|
|
| name | string | yes | 名称 |
|
|
|
-| state | int | yes | 状态 |
|
|
|
-| type | int | no | 资源种类 |
|
|
|
-| sort | string | yes | 排序字段 |
|
|
|
-| by | int | yes | 1: ASC, -1: DESC |
|
|
|
+| type | int | no | 资源种类, 取值{0:video,1:audio,2:live,3:img} |
|
|
|
| pageNo | int | yes | 页码 |
|
|
|
| pageSize | int | yes | 页大小 |
|
|
|
|
|
|
##### 返回字段说明
|
|
|
| name | type | desc |
|
|
|
|------|:-----|:----:|
|
|
|
-| id | int | id |
|
|
|
+| id | string | id |
|
|
|
| code | string | 编码 |
|
|
|
| name | string | 名称 |
|
|
|
-| digest| string | 描述 |
|
|
|
-| tags | array | 标签名数组 |
|
|
|
-| url | string | 地址 |
|
|
|
-| cpId| int | 内容提供商id |
|
|
|
-| cpName| string | 内容提供商名字 |
|
|
|
-| state| int| 状态 |
|
|
|
-| gmtCreated|int | 创建时间 |
|
|
|
+| type | int | 类型 |
|
|
|
+| format | string | 资源格式 |
|
|
|
+| quality | string | 资源质量 |
|
|
|
+| rate | int | 资源码率 |
|
|
|
+| size | int | 资源大小 |
|
|
|
+| state| string | 状态 |
|
|
|
+| gmtCreated| int | 创建时间 |
|
|
|
| gmtModified|int|修改时间|
|
|
|
|
|
|
##### 结果示例
|
|
|
```
|
|
|
{
|
|
|
- "code": "0000",
|
|
|
- "message": '',
|
|
|
- "data": {
|
|
|
- "page": {
|
|
|
- "pageNo": 0,
|
|
|
- "pageSize": 10,
|
|
|
- "hasNext": 1,
|
|
|
- "hasPrev": 0,
|
|
|
- "totalSize": 100,
|
|
|
- "totalNo": 10,
|
|
|
- "start": 20
|
|
|
+ "code": 200,
|
|
|
+ "success": true,
|
|
|
+ "message": null,
|
|
|
+ "data": {
|
|
|
+ "pageNo": 1,
|
|
|
+ "pageSize": 10,
|
|
|
+ "totalSize": 2,
|
|
|
+ "list": [
|
|
|
+ {
|
|
|
+ "id": "61cced1370874e60b14d47962712cb3a",
|
|
|
+ "code": "test-302",
|
|
|
+ "name": "test",
|
|
|
+ "type": 3,
|
|
|
+ "format": "jpg",
|
|
|
+ "quality": "low",
|
|
|
+ "size": 90,
|
|
|
+ "path": "/test/301",
|
|
|
+ "status": "NORMAL",
|
|
|
+ "gmtCreated": 1511264969000,
|
|
|
+ "gmtModified": 1511264969000,
|
|
|
+ "url": "http://efunimgs.oss-cn-beijing-internal.aliyuncs.com/resources//test/301"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id": "707e9ade2df94e9494ab6bdf20dae669",
|
|
|
+ "code": "test-301",
|
|
|
+ "name": "test-301",
|
|
|
+ "type": 3,
|
|
|
+ "format": "jpg",
|
|
|
+ "quality": "low",
|
|
|
+ "size": 90,
|
|
|
+ "path": "/test/301",
|
|
|
+ "status": "NORMAL",
|
|
|
+ "gmtCreated": 1511264969000,
|
|
|
+ "gmtModified": 1511264969000,
|
|
|
+ "url": "http://efunimgs.oss-cn-beijing-internal.aliyuncs.com/resources//test/301"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "start": 0,
|
|
|
+ "totalNo": 1
|
|
|
}
|
|
|
- "list": [
|
|
|
- {
|
|
|
- "id": 2,
|
|
|
- "code": "K-001",
|
|
|
- "name": "第一课",
|
|
|
- "digest": "简介",
|
|
|
- "tags": [
|
|
|
- "哆啦A梦",
|
|
|
- "动漫",
|
|
|
- "幼儿启蒙"
|
|
|
- ],
|
|
|
- "url": "xxx",
|
|
|
- "cpId": 123,
|
|
|
- "state": 0,
|
|
|
- "gmtCreated": "创建时间",
|
|
|
- "gmtModified": "修改时间"
|
|
|
- },
|
|
|
- ...
|
|
|
- ]
|
|
|
}
|
|
|
```
|