|
@@ -12,6 +12,7 @@ import com.bz.smart_city.commom.util.UserUtil;
|
|
|
import com.bz.smart_city.dto.*;
|
|
|
import com.bz.smart_city.service.BuildingService;
|
|
|
import com.bz.smart_city.service.CustomerService;
|
|
|
+import com.github.pagehelper.Page;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -52,28 +53,32 @@ public class StatMeterReadRateByBuildingServiceImpl implements StatMeterReadRate
|
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
|
int period = condition.getPeriod();
|
|
|
List<DeviceDto> rtnList = null;
|
|
|
+ List<Long> deviceIdList = null; ;
|
|
|
if(period == MeterReadPeriod.TODAY){
|
|
|
- rtnList = meterReadRecordMapper.queryUnReadDeviceListForToday(condition);
|
|
|
+ deviceIdList = meterReadRecordMapper.queryUnReadDeviceListForToday(condition);
|
|
|
}
|
|
|
else if (period == MeterReadPeriod.LAST_DAY) {
|
|
|
condition.setStatDay(Integer.parseInt(DateTimeUtil.formatDate(DateTimeUtil.beforeNow(1), "yyyyMMdd")));
|
|
|
- rtnList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building",condition);
|
|
|
+ deviceIdList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building",condition);
|
|
|
}
|
|
|
else if(period == MeterReadPeriod.LAST_7_DAY) {
|
|
|
condition.setStatDay(Integer.parseInt(DateTimeUtil.formatDate(DateTimeUtil.beforeNow(1), "yyyyMMdd")));
|
|
|
- rtnList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building_7day",condition);
|
|
|
+ deviceIdList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building_7day",condition);
|
|
|
}
|
|
|
else if (period == MeterReadPeriod.LAST_15_DAY) {
|
|
|
condition.setStatDay(Integer.parseInt(DateTimeUtil.formatDate(DateTimeUtil.beforeNow(1), "yyyyMMdd")));
|
|
|
- rtnList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building_15day",condition);
|
|
|
+ deviceIdList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building_15day",condition);
|
|
|
}
|
|
|
else if (period == MeterReadPeriod.LAST_MONTH) {
|
|
|
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyyMM");
|
|
|
condition.setStatDay(Integer.parseInt(LocalDateTime.now().plusMonths(-1).format(df)));
|
|
|
- rtnList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building_month",condition);
|
|
|
+ deviceIdList = meterReadRecordMapper.queryUnReadDeviceListV2("sc_stat_meter_unread_device_by_building_month",condition);
|
|
|
+ }
|
|
|
+ if(deviceIdList != null && deviceIdList.size() != 0 ){
|
|
|
+ rtnList = meterReadRecordMapper.queryUnReadDeviceListByIds(deviceIdList) ;
|
|
|
}
|
|
|
log.info("end StatMeterReadRateByBuildingService queryUnReadDeviceList , condition = " + JSON.toJSONString(condition));
|
|
|
- return new Pagination<>(rtnList);
|
|
|
+ return new Pagination<>(rtnList,((Page)deviceIdList).getTotal());
|
|
|
}
|
|
|
|
|
|
@Override
|