11. 流程节点
<h5><strong>请求URL</strong></h5>
<p>POST <code>http://192.168.1.161:8080/jeecg-boot/sys/workflow/flowNode/queryById</code></p>
<h5><strong>请求参数</strong></h5>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>nodeId</td>
<td>是</td>
<td>string</td>
<td>节点记录ID</td>
</tr>
<tr>
<td>pageNo</td>
<td>否</td>
<td>integer</td>
<td>页码(默认1)</td>
</tr>
<tr>
<td>pageSize</td>
<td>否</td>
<td>integer</td>
<td>每页条数(默认10)</td>
</tr>
</tbody>
</table>
<h5><strong>请求示例</strong></h5>
<pre><code class="language-json">{
&quot;nodeId&quot;: &quot;node_123&quot;,
}</code></pre>
<h5><strong>返回示例</strong></h5>
<pre><code class="language-json">{
&quot;success&quot;: true,
&quot;message&quot;: &quot;查询成功&quot;,
&quot;code&quot;: 200,
&quot;result&quot;: {
&quot;id&quot;: &quot;node789&quot;,
&quot;processId&quot;: &quot;proc789&quot;,
&quot;nodeName&quot;: &quot;approve&quot;,
&quot;arrivalTime&quot;: &quot;2025-04-24T14:30:00Z&quot;,
&quot;finishTime&quot;: &quot;2025-04-24T15:45:00Z&quot;,
&quot;operator&quot;: &quot;user003&quot;,
&quot;operation&quot;: &quot;approve&quot;,
&quot;comment&quot;: &quot;同意报销&quot;,
&quot;orderNum&quot;: 2
}
}</code></pre>