10 售卖柜状态查询
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://120.77.72.190:8085/api/MengyouCtl/getStatus</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">macno</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>设备号</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": 1,//1:成功 -1发送超时 其他:失败
"data": {
"container_count": "2",//货柜数量
//货柜数组
"container": [{
"num": "1",//货柜编号 1-4
"status": "0",//货柜状态 0:柜与主控板通信正常 1:柜与主控板通信异常
"sysnum": "8",//开柜的流水
"door_status": ["0", "1", "0"...],//柜门的状态 按顺序表示1-36号柜门,0:关闭,1:门打开
"cooling_temp": "0.1",//冷却系统NTC温度 温度小于等于-50度代表传感器没接入
"heating_temp": "-0.2"//加热系统NTC温度 温度小于等于-50度代表传感器没接入
}, {
"num": "2",
"status": "1",
"sysnum": "9",
"door_status": ["0", "0", "0"...],
"cooling_temp": "-0.3",
"heating_temp": "0.2"
}]
},
"msg": "发送成功"
}</code></pre>