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