12. 审核记录
<h5><strong>请求URL</strong></h5>
<p>GET <code>http://192.168.1.161:8080/jeecg-boot/workflow/flowProcess/queryById</code></p>
<h5><strong>查询参数</strong></h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>process_id</code></td>
<td>是</td>
<td>string</td>
<td>流程实例ID</td>
</tr>
<tr>
<td><code>pageNo</code></td>
<td>否</td>
<td>integer</td>
<td>页码(默认1)</td>
</tr>
<tr>
<td><code>pageSize</code></td>
<td>否</td>
<td>integer</td>
<td>每页条数(默认10)</td>
</tr>
</tbody>
</table>
<h5><strong>返回示例</strong></h5>
<pre><code class="language-json">{
&quot;success&quot;: true,
&quot;code&quot;: 200,
&quot;data&quot;: {
&quot;records&quot;: [
{
&quot;operationType&quot;: &quot;approve&quot;,
&quot;operatorId&quot;: &quot;user_123&quot;,
&quot;operationTime&quot;: &quot;2023-08-15 10:15:33&quot;,
&quot;operationDetail&quot;: &quot;金额在预算范围内&quot;,
&quot;ipAddress&quot;: &quot;192.168.1.100&quot;
}
],
&quot;total&quot;: 15,
&quot;size&quot;: 10,
&quot;current&quot;: 1
}
}</code></pre>