| | |
| | | result=tojson(model); |
| | | return SUCCESS; |
| | | } |
| | | //设备实时数据显示(前100笔数据服务器的时间) |
| | | public String serchByInfo() { |
| | | Dc25v_batt ac=ActionUtil.getGson(ActionUtil.time_yyyyMMddHHmmss).fromJson(json, Dc25v_batt.class); |
| | | ServiceModel model=service.serchByInfo(ac); |
| | | result=tojson(model); |
| | | return SUCCESS; |
| | | } |
| | | //设备历史数据查询 |
| | | public String serchHistory() { |
| | | Dc25v_batt ac=ActionUtil.getGson(ActionUtil.time_yyyyMMddHHmmss).fromJson(json, Dc25v_batt.class); |
| | | ServiceModel model=service.serchHistory(ac); |
| | | result=tojson(model); |
| | | return SUCCESS; |
| | | } |
| | | |
| | | |
| | | |