xiangpei
2024-08-09 891a0a7c52c25a31f318b7ff256aa45f0600512a
ycl-server/src/main/java/com/ycl/platform/controller/YwPointController.java
@@ -116,8 +116,8 @@
    @PostMapping("/import/{unitId}")
    @ApiOperation(value = "导入数据", notes = "导入数据")
    public Result importData(MultipartFile file, @PathVariable("unitId") Integer unitId, Date startTime, Date endTime) throws IOException {
        return ywPointService.importData(file, unitId, startTime, endTime);
    public Result importData(MultipartFile file, @PathVariable("unitId") Integer unitId, Date startTime, Date endTime, Boolean provinceTag, Boolean importantTag, Boolean importantCommandImageTag) throws IOException {
        return ywPointService.importData(file, unitId, startTime, endTime, provinceTag, importantTag, importantCommandImageTag);
    }
}