操作日志
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取当前用户的操作日志列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://xgkj.hljnyxx.com/dongnongBackend/index.php//Home/OperateLog/getOperateLog</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET
<h5>请求参数说明</h5></li>
</ul>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">userId</td>
<td>用户ID</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 0,
&quot;msg&quot;: &quot;查询成功&quot;,
&quot;data&quot;: [
{
&quot;content&quot;: &quot;修改了项目&quot;,
&quot;ip_address&quot;: &quot;113.0.180.35&quot;,
&quot;create_time&quot;: &quot;2023-03-21 14:45:57&quot;,
&quot;is_pc&quot;: &quot;1&quot;,
&quot;name&quot;: &quot;张老师&quot;
},
{
&quot;content&quot;: &quot;预约了项目,绑定了地块:B-3&quot;,
&quot;ip_address&quot;: &quot;113.0.180.35&quot;,
&quot;create_time&quot;: &quot;2023-03-21 15:52:14&quot;,
&quot;is_pc&quot;: &quot;1&quot;,
&quot;name&quot;: &quot;张老师&quot;
}
]
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">content</td>
<td>操作内容</td>
</tr>
<tr>
<td style="text-align: left;">ip_address</td>
<td>IP 地址</td>
</tr>
<tr>
<td style="text-align: left;">create_time</td>
<td>创建时间</td>
</tr>
<tr>
<td style="text-align: left;">is_pc</td>
<td>是否是 PC 端,0-否(移动端),1-是</td>
</tr>
<tr>
<td style="text-align: left;">name</td>
<td>用户名</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<p>-无</p>