AI水冷设备性能-冷源系统下拉列表
<h2>3. 冷源系统下拉列表接口(复用水冷节能基础管理)</h2>
<h3>简要描述</h3>
<p>获取冷源系统下拉列表数据,用于查询条件筛选</p>
<h3>请求URL</h3>
<pre><code>POST /energy-manage/coolingSystem/list</code></pre>
<h3>请求方式</h3>
<p>POST</p>
<h3>入参示例</h3>
<pre><code class="language-json">{
&quot;topCont&quot;: {
&quot;svcCode&quot;: &quot;BSS&quot;,
&quot;appSecret&quot;: &quot;&quot;,
&quot;reqTime&quot;: &quot;2025-08-04 21:11:58&quot;,
&quot;appChl&quot;: &quot;&quot;,
&quot;version&quot;: &quot;V1.0&quot;
},
&quot;svcCont&quot;: {
&quot;parkName&quot;: &quot;中关村园区&quot;
}
}</code></pre>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>parkName</td>
<td>否</td>
<td>String</td>
<td>园区名称筛选</td>
</tr>
</tbody>
</table>
<h3>返回示例</h3>
<pre><code class="language-json">{
&quot;topCont&quot;: {
&quot;resultCode&quot;: &quot;0&quot;,
&quot;respTime&quot;: &quot;2025-08-04 17:19:46&quot;,
&quot;remark&quot;: &quot;success&quot;
},
&quot;svcCont&quot;: {
&quot;data&quot;: [
{
&quot;systemId&quot;: &quot;1001&quot;,
&quot;systemName&quot;: &quot;冷源系统A&quot;,
&quot;systemCode&quot;: &quot;SYS001&quot;,
&quot;parkName&quot;: &quot;中关村园区&quot;
},
{
&quot;systemId&quot;: &quot;1002&quot;,
&quot;systemName&quot;: &quot;冷源系统B&quot;,
&quot;systemCode&quot;: &quot;SYS002&quot;,
&quot;parkName&quot;: &quot;中关村园区&quot;
}
]
}
}</code></pre>
<h3>返回参数说明</h3>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>systemId</td>
<td>String</td>
<td>冷源系统ID</td>
</tr>
<tr>
<td>systemName</td>
<td>String</td>
<td>冷源系统名称</td>
</tr>
<tr>
<td>systemCode</td>
<td>String</td>
<td>冷源系统编码</td>
</tr>
<tr>
<td>parkName</td>
<td>String</td>
<td>园区名称</td>
</tr>
</tbody>
</table>
<hr />
<h2>4. 错误码说明</h2>
<table>
<thead>
<tr>
<th>错误码</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>成功</td>
</tr>
<tr>
<td>1001</td>
<td>参数校验失败</td>
</tr>
<tr>
<td>1002</td>
<td>时间范围超出限制(最大查询3个月)</td>
</tr>
<tr>
<td>1003</td>
<td>数据导出失败</td>
</tr>
<tr>
<td>1004</td>
<td>系统异常</td>
</tr>
<tr>
<td>1005</td>
<td>数据不存在</td>
</tr>
</tbody>
</table>