燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-11 dc4ca57e049ec18d8303109d1aa332096b880a34
src/main/java/com/yssh/controller/XlsReportController.java
@@ -15,6 +15,7 @@
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
@@ -59,4 +60,11 @@
        return Result.OK(list);
    }
    @ApiOperationSupport(order = 2)
    @GetMapping("/downloadById")
    @ApiOperation(value = "根据ID下载", notes = "根据ID下载")
    public void downloadById(@RequestParam(value = "id", required = true) int id, HttpServletResponse res) {
        xlsReportService.downloadById(id, res);
    }
}