## 资源位接口定义

### 查询资源

> GET `/resources/query`

#### 入参

-----------------------------------------------------------
|参数名     |必填 |类型       |示例值     |描述           |
|------     |---- |----       |------     |----           |
|name       |否   |string     |男首页     |资源名称       |
|sort_id    |否   |int        |2          |分类编号       |
|platform_id|否   |int        |1          |平台编号       |
|page       |否   |int        |1          |页数           |

#### 返回

``` json
{
    "code":200
    "data":{
        "number":1,
        "size":10,
        "totalPages":28,
        "totalElements":275,
        "content":[
            {
                "id":8,
                "name":"男首页",
                "sort_id":2,
                "sort_name":"男首",
                "platform_id":1,
                "platform_name":"yohoApp",
                "code":"201504091403001",
                "match_code":"",
                "create_time":1430378310,
                "sort_list":[
                    {
                        "sort_id":2,
                        "sort_name":"男首",
                        "platform_id":"1",
                        "create_time":1430304722,
                        "status":1
                    }
                ],
                "plat_list":[
                    {
                        "platform_id":1,
                        "platform_name":"yohoApp",
                        "platform_flag":"iphone",
                        "create_time":1430300615,
                        "status":1
                    }
                ]
            }
        ]
    }
}

```
-----------------------------
|参数名     |描述           |
|------     |----           |
|number     |页数           |
|size       |每页个数       |
|totalPages |总页数         |
|totalElements |总个数      |
|content    |内容           |
|id         |资源编号       |
|name       |资源名称       |
|sort_id    |分类编号       |
|sort_name  |分类名称       |
|platform_id|平台编号       |
|platform_name|平台名称     |
|code       |资源码         |
|match_code |配对码         |
|create_time|创建时间       |
|sort_list  |分类列表       |
|plat_list  |平台列表       |