|
@@ -21,6 +21,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.io.File;
|
|
|
import java.text.DateFormat;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
@@ -170,7 +171,7 @@ public class GoldenService {
|
|
|
for (Map.Entry<String, Map<String, List<Object>>> entry : wtMap.entrySet()) {
|
|
|
map.put(entry.getKey(), entry.getValue());
|
|
|
List<String> title = exportConfig.getTemplate1title();
|
|
|
- ExcelExportUtils.exelcExportTem(entry.getValue(), entry.getKey(), title, exportConfig.getExportpath() + "\\" + startTss.substring(0, 7) + "\\" + val + "分钟\\" + address + "单机\\", entry.getKey().replace("01_",""));
|
|
|
+ ExcelExportUtils.exelcExportTem(entry.getValue(), entry.getKey(), title, exportConfig.getExportpath() + File.separator + startTss.substring(0, 7) + File.separator + val + "分钟" + File.separator + address + "单机" + File.separator, entry.getKey().replace("01_", ""));
|
|
|
}
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
@@ -266,7 +267,7 @@ public class GoldenService {
|
|
|
Map<String, List<Object>> swdlVos = new HashMap<>();
|
|
|
swdlVos.put("F1", data.stream().map(p -> dateFormat.format(p.get("RECORDDATE"))).collect(Collectors.toList()));
|
|
|
swdlVos.put("F2", data.stream().map(p -> Double.valueOf(p.get("SWDL").toString())).collect(Collectors.toList()));
|
|
|
- ExcelExportUtils.exelcExportTem(swdlVos, "日上网电量", swdltitle, exportConfig.getExportpath() + "\\" + startTss.substring(0, 7) + "\\" + val + "分钟\\", address+"测风塔");
|
|
|
+ ExcelExportUtils.exelcExportTem(swdlVos, "日上网电量", swdltitle, exportConfig.getExportpath() + File.separator + startTss.substring(0, 7) + File.separator + val + "分钟"+File.separator, address+"测风塔");
|
|
|
map.put("swdl", list);
|
|
|
|
|
|
// 上网功率
|
|
@@ -279,14 +280,14 @@ public class GoldenService {
|
|
|
swglVos.put("F1", data2.stream().map(p -> DateUtils.format(p.getTs(), DateUtils.DATE_TIME_PATTERN)).collect(Collectors.toList()));
|
|
|
swglVos.put("F2", data2.stream().map(TsPointData::getDoubleValue).collect(Collectors.toList()));
|
|
|
List<String> swgltitle = exportConfig.getTemplate2swgltitle();
|
|
|
- ExcelExportUtils.exelcExportTem(swglVos, "上网功率", swgltitle, exportConfig.getExportpath() + "\\" + startTss.substring(0, 7) + "\\" + val + "分钟\\", address+"测风塔");
|
|
|
+ ExcelExportUtils.exelcExportTem(swglVos, "上网功率", swgltitle, exportConfig.getExportpath() + File.separator + startTss.substring(0, 7) + File.separator + val + "分钟"+File.separator, address+"测风塔");
|
|
|
map.put("swgl", list2);
|
|
|
|
|
|
// 测风塔数据
|
|
|
String point3 = exportConfig.getTemplate2cft().get(station);
|
|
|
Map<String, List<Object>> cftlVos = getTemplateHistory2(startTs, endTs, interval, point3);
|
|
|
List<String> cftltitle = exportConfig.getTemplate2cfttitle();
|
|
|
- ExcelExportUtils.exelcExportTem(cftlVos, "测风塔数据", cftltitle, exportConfig.getExportpath() + "\\" + startTss.substring(0, 7) + "\\" + val + "分钟\\", address+"测风塔");
|
|
|
+ ExcelExportUtils.exelcExportTem(cftlVos, "测风塔数据", cftltitle, exportConfig.getExportpath() + File.separator + startTss.substring(0, 7) + File.separator + val + "分钟"+File.separator, address+"测风塔");
|
|
|
} catch (Exception e) {
|
|
|
log.error("error", e);
|
|
|
throw new QiNiuException(QiNiuErrorEnum.ERROR_DATA);
|