business/src/main/java/com/ycl/controller/ProjectInfoController.java
@@ -58,7 +58,7 @@ @DeleteMapping("/{id}") @ApiOperation(value = "ID删除", notes = "ID删除") // @PreAuthorize("hasAuthority('projectInfo:del')") public Result removeById(@PathVariable("id") String id) { public Result removeById(@PathVariable("id") Long id) { return projectInfoService.removeById(id); } @@ -120,4 +120,5 @@ ) throws IOException { OutputExcelUtils.export(response, "导入模板", "项目信息", null, ProjectExcelTemplate.class ,fieldList); } }