|
|
@ -48,13 +48,13 @@ public class PsdcThermometerHtdataServiceImpl implements IPsdcThermometerHtdataS |
|
|
|
Date date = new Date(); |
|
|
|
Date date = new Date(); |
|
|
|
List<PsdcThermometerDataRes> ary = new ArrayList(); |
|
|
|
List<PsdcThermometerDataRes> ary = new ArrayList(); |
|
|
|
|
|
|
|
|
|
|
|
for (Integer d : devList) { |
|
|
|
|
|
|
|
// 查询今日实时温度数据
|
|
|
|
|
|
|
|
PsdcThermometerDataRes dataRes = psdcThermometerRtdataMapper.queryById(d); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String tb = sdf.format(date) + " 00:00:00"; // 今天开始检索时间
|
|
|
|
String tb = sdf.format(date) + " 00:00:00"; // 今天开始检索时间
|
|
|
|
String te = sdf.format(date) + " 23:59:59"; // 今天结束检索时间
|
|
|
|
String te = sdf.format(date) + " 23:59:59"; // 今天结束检索时间
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (Integer d : devList) { |
|
|
|
|
|
|
|
// 查询今日实时温度数据
|
|
|
|
|
|
|
|
PsdcThermometerDataRes dataRes = psdcThermometerRtdataMapper.queryById(d, sdf.format(date)); |
|
|
|
|
|
|
|
|
|
|
|
List<Double> listIn = new ArrayList(); // 今天历史进水温度集合
|
|
|
|
List<Double> listIn = new ArrayList(); // 今天历史进水温度集合
|
|
|
|
List<Double> listOut = new ArrayList(); // 今天历史出水温度集合
|
|
|
|
List<Double> listOut = new ArrayList(); // 今天历史出水温度集合
|
|
|
|
List<Double> listTemp = new ArrayList(); // 今天历史温度集合
|
|
|
|
List<Double> listTemp = new ArrayList(); // 今天历史温度集合
|
|
|
@ -63,7 +63,9 @@ public class PsdcThermometerHtdataServiceImpl implements IPsdcThermometerHtdataS |
|
|
|
// 循环遍历今天历史数据对象集合
|
|
|
|
// 循环遍历今天历史数据对象集合
|
|
|
|
List<PsdcThermometerHtdata> htdata = psdcThermometerHtdataMapper.selTodayThermometer(d, tb, te); |
|
|
|
List<PsdcThermometerHtdata> htdata = psdcThermometerHtdataMapper.selTodayThermometer(d, tb, te); |
|
|
|
for (PsdcThermometerHtdata h : htdata){ |
|
|
|
for (PsdcThermometerHtdata h : htdata){ |
|
|
|
|
|
|
|
if (null != h.getThermometerValue()){ |
|
|
|
listTemp.add(h.getThermometerValue()); |
|
|
|
listTemp.add(h.getThermometerValue()); |
|
|
|
|
|
|
|
} |
|
|
|
if (null != h.getThermometerValueIn()){ |
|
|
|
if (null != h.getThermometerValueIn()){ |
|
|
|
listIn.add(h.getThermometerValueIn()); |
|
|
|
listIn.add(h.getThermometerValueIn()); |
|
|
|
} |
|
|
|
} |
|
|
@ -95,12 +97,63 @@ public class PsdcThermometerHtdataServiceImpl implements IPsdcThermometerHtdataS |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public PsdcDevicePowerRes selTotalElectricityInfo() { |
|
|
|
public PsdcDevicePowerRes selTotalElectricityInfo(Integer deviceId) { |
|
|
|
long userId = SecurityUtils.getUserId(); |
|
|
|
long userId = SecurityUtils.getUserId(); |
|
|
|
PsdcDevicePowerHdata96 hdata96 = psdcDevicePowerHdata96Mapper.queryById(userId, 13, sdf2.format(new Date())); |
|
|
|
PsdcDevicePowerHdata96 hdata96 = psdcDevicePowerHdata96Mapper.queryById(userId, deviceId, sdf2.format(new Date())); |
|
|
|
PsdcDevicePowerRes rtdata = psdcElectricRtdataMapper.queryById(13, sdf.format(new Date())); |
|
|
|
PsdcDevicePowerRes rtdata = psdcElectricRtdataMapper.queryById(deviceId, sdf.format(new Date())); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (null != hdata96 && null != rtdata){ |
|
|
|
rtdata.setTodayUsePowers(hdata96); |
|
|
|
rtdata.setTodayUsePowers(hdata96); |
|
|
|
return rtdata; |
|
|
|
return rtdata; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public Map<String, Object> selTodayThermometerById(Integer deviceId) { |
|
|
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
|
|
|
String tb = sdf.format(date) + " 00:00:00"; // 今天开始检索时间
|
|
|
|
|
|
|
|
String te = sdf.format(date) + " 23:59:59"; // 今天结束检索时间
|
|
|
|
|
|
|
|
Map<String, Object> map = new HashMap(); |
|
|
|
|
|
|
|
// 查询该设备实时温度数据
|
|
|
|
|
|
|
|
PsdcThermometerDataRes dataRes = psdcThermometerRtdataMapper.queryById(deviceId, sdf.format(date)); |
|
|
|
|
|
|
|
List<PsdcThermometerHtdata> htdata = psdcThermometerHtdataMapper.selTodayThermometer(deviceId, tb, te); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (null == dataRes || null == htdata){ |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Double> listIn = new ArrayList(); // 今天历史进水温度集合
|
|
|
|
|
|
|
|
List<Double> listOut = new ArrayList(); // 今天历史出水温度集合
|
|
|
|
|
|
|
|
List<Double> listTemp = new ArrayList(); // 今天历史温度集合
|
|
|
|
|
|
|
|
List<String> times = new ArrayList(); // 时间轴
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 循环遍历今天历史数据对象集合
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (PsdcThermometerHtdata h : htdata){ |
|
|
|
|
|
|
|
if (null != h.getThermometerValue()){ |
|
|
|
|
|
|
|
listTemp.add(h.getThermometerValue()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (null != h.getThermometerValueIn()){ |
|
|
|
|
|
|
|
listIn.add(h.getThermometerValueIn()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (null != h.getThermometerValueOut()){ |
|
|
|
|
|
|
|
listOut.add(h.getThermometerValueOut()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String t = h.getUpdateTime().split(" ")[1].substring(0,5); |
|
|
|
|
|
|
|
times.add(t); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
map.put("deviceId", dataRes.getDeviceId()); |
|
|
|
|
|
|
|
map.put("deviceName", dataRes.getDeviceName()); |
|
|
|
|
|
|
|
map.put("deviceTemp", dataRes.getThermometerValue()); |
|
|
|
|
|
|
|
map.put("tempIn", listIn); |
|
|
|
|
|
|
|
map.put("tempOut", listOut); |
|
|
|
|
|
|
|
map.put("temps", listTemp); |
|
|
|
|
|
|
|
map.put("times", times); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return map; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -108,15 +161,16 @@ public class PsdcThermometerHtdataServiceImpl implements IPsdcThermometerHtdataS |
|
|
|
* @return |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public AjaxResult selDzglWenDu() { |
|
|
|
public AjaxResult selDzglWenDu(Integer deviceId) { |
|
|
|
Date date = new Date(); |
|
|
|
Date date = new Date(); |
|
|
|
String tb = sdf.format(date) + " 00:00:00"; // 今天开始检索时间
|
|
|
|
String tb = sdf.format(date) + " 00:00:00"; // 今天开始检索时间
|
|
|
|
String te = sdf.format(date) + " 23:59:59"; // 今天结束检索时间
|
|
|
|
String te = sdf.format(date) + " 23:59:59"; // 今天结束检索时间
|
|
|
|
List<Double> listIn = new ArrayList(); // 今天历史进水温度集合
|
|
|
|
List<Double> listIn = new ArrayList(); // 今天历史进水温度集合
|
|
|
|
List<Double> listOut = new ArrayList(); // 今天历史出水温度集合
|
|
|
|
List<Double> listOut = new ArrayList(); // 今天历史出水温度集合
|
|
|
|
|
|
|
|
List<Double> listTemps = new ArrayList(); // 今天历史温度集合
|
|
|
|
List<String> times = new ArrayList(); // 时间轴
|
|
|
|
List<String> times = new ArrayList(); // 时间轴
|
|
|
|
// 循环遍历今天历史数据对象集合
|
|
|
|
// 循环遍历今天历史数据对象集合
|
|
|
|
List<PsdcThermometerHtdata> htdata = psdcThermometerHtdataMapper.selTodayThermometer(1, tb, te); |
|
|
|
List<PsdcThermometerHtdata> htdata = psdcThermometerHtdataMapper.selTodayThermometer(deviceId, tb, te); |
|
|
|
for (PsdcThermometerHtdata h : htdata){ |
|
|
|
for (PsdcThermometerHtdata h : htdata){ |
|
|
|
if (null != h.getThermometerValueIn()){ |
|
|
|
if (null != h.getThermometerValueIn()){ |
|
|
|
listIn.add(h.getThermometerValueIn()); |
|
|
|
listIn.add(h.getThermometerValueIn()); |
|
|
@ -124,10 +178,13 @@ public class PsdcThermometerHtdataServiceImpl implements IPsdcThermometerHtdataS |
|
|
|
if (null != h.getThermometerValueOut()){ |
|
|
|
if (null != h.getThermometerValueOut()){ |
|
|
|
listOut.add(h.getThermometerValueOut()); |
|
|
|
listOut.add(h.getThermometerValueOut()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (null != h.getThermometerValue()){ |
|
|
|
|
|
|
|
listTemps.add(h.getThermometerValue()); |
|
|
|
|
|
|
|
} |
|
|
|
String t = h.getUpdateTime().split(" ")[1].substring(0,5); |
|
|
|
String t = h.getUpdateTime().split(" ")[1].substring(0,5); |
|
|
|
times.add(t); |
|
|
|
times.add(t); |
|
|
|
} |
|
|
|
} |
|
|
|
AjaxResult ajax = AjaxResult.success().put("tempIn", listIn).put("tempOut", listOut).put("times", times); |
|
|
|
AjaxResult ajax = AjaxResult.success().put("tempIn", listIn).put("tempOut", listOut).put("temps", listTemps).put("times", times); |
|
|
|
return ajax; |
|
|
|
return ajax; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|