## **晨檢數據上報 postUrl**
**接口描述**
* 晨檢數據上報
**請求URL**
* [xxx.com/xxx](http://xxx.com/xxx)
**請求方式**
* post
**請求參數**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| deviceId | string | 設備序列號 |
| cardCode| string | 學生卡號 |
| time| string | 刷卡時間 |
| postMoney| string | 本次消費錢數|
| windowsId| string | 消費機窗口id|
**返回參數**
每次刷卡,無論是否傳遞消費數據,服務器都要返回更新**卡號狀態**和**最新余額**
| 參數名 | 類型 | 說明 |
| --- | --- | --- |
| status| string | 0,成功,非0,失敗|
| money| number| 卡內余額 |
| cardStatus| number| 卡號狀態0可用,1掛失卡|
**返回示例**
~~~
{
"status": 0,
"msg": "上傳成功",//服務器返回
"data":{
"cardStatus":"0"//0可用,1掛失卡
"money":"100"//卡內余額
}
"servertime": "1535703001194"
}
~~~