## 获取默认回复规则
**简要描述:**
* 获取默认规则列表
**请求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
}
~~~