## 獲取默認回復規則
**簡要描述:**
* 獲取默認規則列表
**請求URL:**
* /wechat/init_reply/findPage
**請求方式:**
* POST
**參數:**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
**返回參數**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| id| 是 | int | id |
| type| 是| string| 類別 'text','image','voice','video','music','news','customservice'|
| content| 是 | string| 內容 1.text: 回復正文 2.music: 縮略圖地址 3.news:圖文id|
| media_id| 是 | string | 微信返回的素材id |
| url| 是 | string | 微信返回素材URL |
| local_url| 是 | string| 本地素材url |
| thumb_media_id| 是 | string | 微信返回的音樂封面縮略圖素材id |
| thumb_url| 是 | string | 微信返回音樂封面縮略圖素材URL |
| thumb_local_url| 是 | string| 本地音樂封面縮略圖素材url |
| materials_title| 是 | string | 素材標題 |
| materials_introduction| 是 | string| 素材描述 |
| status| 是 | int| 1正常 0禁用 |
| add_time| 是 | string | 創建時間 |
**返回示例**
~~~
{
"msg": "success",
"data": {
"id": 18,
"type": "music",
"content": "xxxxxxxxx",
"media_id": "CE5eNrD_JJX6ghW8PmIQ0ZDJ6n0yvp4Qbb8sWAWF3mI",
"url": "https://mmbiz.qlogo.cn/mmbiz/5aX12EYBdf3FZOiaAicqgfhvbZyJ3UpaDmJwKhDgTFnNf4lAjlJ1qMWblUW8VqSSECIP4anCk8taoLGUdufCm4iaA/0?wx_fmt=png",
"local_url": "resource/xxx/2020/0829/xxx.jpg",
"thumb_media_id": "CE5eNrD_JJX6ghW8PmIQ0ZDJ6n0yvp4Qbb8sWAWF3mI",
"thumb_url": "https://mmbiz.qlogo.cn/mmbiz/5aX12EYBdf3FZOiaAicqgfhvbZyJ3UpaDmJwKhDgTFnNf4lAjlJ1qMWblUW8VqSSECIP4anCk8taoLGUdufCm4iaA/0?wx_fmt=png",
"thumb_local_url": "resource/xxx/2020/0829/xxx.jpg",
"materials_title": "this is a title",
"materials_introduction": "簡介描述",
"status": 1,
"add_time": "2020-08-29 13:28:37"
},
"code": 200
}
~~~