## **维护服务器接口 commandUrl**
**接口描述**
* 维护考勤机和服务器之间通讯
**请求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**请求方式**
* post
**请求参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| deviceId | string | 设备序列号 |
**返回参数**
| 参数名 | 类型 | 说明 |
| --- | --- | --- |
| status| string | 0,成功,非0,失败|
| command| string | cmd命令程序|
**返回示例**
~~~
{
"status": 0,
"msg": "success",
"data": {
"command": "reboot"
}
}
~~~