获取回复列表
<p><strong>简要描述:</strong> </p>
<p>-获取回复列表</p>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/api/user/user-comment/comment</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">token</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td></td>
</tr>
<tr>
<td style="text-align: left;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>评论主键</td>
</tr>
<tr>
<td style="text-align: left;">page</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>第几页</td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>每页大小</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": 600,
"msg": "获取成功",
"result": {
"count": "3",
"data": [
{
"id": "16",
"cust_no": "gl00030013",
"the_id": "23",
"first_comment_id": "7",
"p_id": "7",
"content": "我来了评论",
"to_user": "gl00030013",
"is_show": "1",
"is_real": "1",
"type": "1",
"c_time": "2018-09-03 17:58:02",
"user_name": "xxxxx1213",
"user_tel": "13960774169",
"user_pic": null,
"praise_num": "0",
"is_praise": 0
},
{
"id": "13",
"cust_no": "gl00030013",
"the_id": "23",
"first_comment_id": "7",
"p_id": "7",
"content": "我来了回复",
"to_user": "gl00030013",
"is_show": "1",
"is_real": "1",
"type": "1",
"c_time": "2018-09-03 17:53:17",
"user_name": "xxxxx1213",
"user_tel": "13960774169",
"user_pic": null,
"praise_num": "0",
"is_praise": 0
},
{
"id": "12",
"cust_no": "gl00030013",
"the_id": "23",
"first_comment_id": "7",
"p_id": "7",
"content": "我来了回复",
"to_user": "gl00030013",
"is_show": "1",
"is_real": "1",
"type": "1",
"c_time": "2018-09-03 17:52:47",
"user_name": "xxxxx1213",
"user_tel": "13960774169",
"user_pic": null,
"praise_num": "0",
"is_praise": 0
}
]
}
}</code></pre>
<p><strong>返回参数说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>