燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-29 5d6e29cd47762c4dacad7708cbef232414f5b95e
src/main/java/com/yssh/service/XlsReportService.java
@@ -57,6 +57,12 @@
    private double bjz;
    /**
     * 报警值
     */
    @Value("${report.templates}")
    private String templates;
    /**
     * 获取导出路径
     */
    private String getExpPath(String type) {
@@ -74,9 +80,10 @@
     * 获取Excel模板
     */
    private String getXslTemplate(String type) throws IOException {
        ClassPathResource resource = new ClassPathResource(String.format("templates/%s.xlsx", type));
        //ClassPathResource resource = new ClassPathResource(String.format("templates/%s.xlsx", type));
        //return resource.exists() ? resource.getFile().getPath() : null;
        return resource.exists() ? resource.getFile().getPath() : null;
        return String.format(templates + File.separator + type + ".xlsx");
    }
    /**