修改文章
<h1>修改文章</h1>
<ul>
<li>接口描述:修改文章</li>
<li>接口地址:/manage/shiwai/article/change</li>
<li>请求方式:GET</li>
<li>开发人员:王</li>
</ul>
<h2>请求参数</h2>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>默认值</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>int</td>
<td>--</td>
<td>文章id</td>
</tr>
</tbody>
</table>
<h2>响应参数</h2>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>默认值</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>status</td>
<td>int</td>
<td>--</td>
<td>状态码</td>
</tr>
<tr>
<td>msg</td>
<td>string</td>
<td>--</td>
<td>响应说明</td>
</tr>
<tr>
<td>id</td>
<td>int</td>
<td>--</td>
<td>文章id</td>
</tr>
<tr>
<td>category_id</td>
<td>int</td>
<td>--</td>
<td>文章分类</td>
</tr>
<tr>
<td>title</td>
<td>string</td>
<td>--</td>
<td>文章标题</td>
</tr>
<tr>
<td>description</td>
<td>string</td>
<td>--</td>
<td>文章描述</td>
</tr>
<tr>
<td>content</td>
<td>string</td>
<td>--</td>
<td>文章正文</td>
</tr>
<tr>
<td>createTime</td>
<td>string</td>
<td>--</td>
<td>创建时间</td>
</tr>
</tbody>
</table>
<h2>响应示例</h2>
<pre><code>{ &quot;status&quot;: 200,
&quot;msg&quot;: &quot;修改成功&quot;,
&quot;data&quot;: {
&quot;id&quot;: 4,
&quot;category_id&quot;: 1,
&quot;title&quot;: &quot;ww&quot;,
&quot;description&quot;: &quot;ww&quot;,
&quot;content&quot;: &quot;ww&quot;,
&quot;createTime&quot;: &quot;1748909574&quot;
}
}</code></pre>