|
|
@@ -448,5 +448,21 @@ public class IotScreenServiceImpl implements IIotScreenService {
|
|
|
return iotDeviceCommonService.func(iotDeviceBaseFunReqVo);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取气象墒情折线图列表接口
|
|
|
+ *
|
|
|
+ * @param reqVo
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public List<IotDeviceListResVo> qxszChartList(IotDeviceDataListReqVo reqVo) {
|
|
|
+ ValidateUtil.validateDevBid(reqVo.getDevBid());
|
|
|
+ IotDeviceBaseFunReqVo iotDeviceBaseFunReqVo = new IotDeviceBaseFunReqVo();
|
|
|
+ iotDeviceBaseFunReqVo.setDevBid(reqVo.getDevBid());
|
|
|
+ iotDeviceBaseFunReqVo.setMethodName("chartList");
|
|
|
+ iotDeviceBaseFunReqVo.setParam(reqVo);
|
|
|
+ return iotDeviceCommonService.func(iotDeviceBaseFunReqVo);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
}
|