|
|
|
@ -71,15 +71,14 @@ public class ApiController {
|
|
|
|
|
System.out.println(beginTime.toString());
|
|
|
|
|
return success(iApiService.queryPramList(beginTime, endTime));
|
|
|
|
|
}
|
|
|
|
|
/* @PostMapping("/home/exportParamList")
|
|
|
|
|
@PostMapping("/home/exportParamList")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult export(Date beginTime, Date endTime)
|
|
|
|
|
{
|
|
|
|
|
List<RecordRaramData> recordRaramData = iApiService.queryPramList(beginTime, endTime);
|
|
|
|
|
List<BaseDeviceInfo> list = baseDeviceInfoService.selectBaseDeviceInfoList(baseDeviceInfo);
|
|
|
|
|
ExcelUtil<BaseDeviceInfo> util = new ExcelUtil<BaseDeviceInfo>(BaseDeviceInfo.class);
|
|
|
|
|
return util.exportExcel(list, "base_device_info");
|
|
|
|
|
}*/
|
|
|
|
|
List<RecordRaramData> list = iApiService.queryPramList(beginTime, endTime);
|
|
|
|
|
ExcelUtil<RecordRaramData> util = new ExcelUtil(RecordRaramData.class);
|
|
|
|
|
return util.exportExcel(list, "数据记录");
|
|
|
|
|
}
|
|
|
|
|
@ApiOperation(tags = {"60脱水机"}, value = "设备介绍")
|
|
|
|
|
@GetMapping("/home/deviceInfo")
|
|
|
|
|
public AjaxResult deviceInfo() {
|
|
|
|
|