我的发贴
<p><strong>简要描述:</strong></p>
<ul>
<li>获取用户发贴记录</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>/user/post</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET</li>
</ul>
<p><strong>参数:</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>page</td>
<td>是</td>
<td>String</td>
<td>页数</td>
</tr>
<tr>
<td>limit</td>
<td>否</td>
<td>String</td>
<td>每页多少条</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
"code": 200,
"data": [{
"tid": "1",
"title": "12154545",
"isEnd": "0",
"status": 2 ,
"created": "2019-01-01 00:00:00",
"reads": "0",
"answer": "1"
}],
"msg":""
}</code></pre>
<p><strong>返回参数说明</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>int</td>
<td>200-成功</td>
</tr>
<tr>
<td>data</td>
<td>Array</td>
<td>最近的提问数据</td>
</tr>
<tr>
<td>msg</td>
<td>String</td>
<td>系统数据</td>
</tr>
</tbody>
</table>
<p>data中Array数据示例:</p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>tid</td>
<td>String</td>
<td>文章ID</td>
</tr>
<tr>
<td>title</td>
<td>String</td>
<td>文章标题</td>
</tr>
<tr>
<td>created</td>
<td>String</td>
<td>创建时间</td>
</tr>
<tr>
<td>isEnd</td>
<td>String</td>
<td>是否结贴</td>
</tr>
<tr>
<td>staus</td>
<td>String</td>
<td>发贴状态</td>
</tr>
<tr>
<td>reads</td>
<td>String</td>
<td>已阅计数</td>
</tr>
<tr>
<td>answer</td>
<td>String</td>
<td>回复计数</td>
</tr>
</tbody>
</table>
<p><strong>备注</strong></p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>