fuliqi
2024-11-29 b38c344f927fb6b54b3376fd7af03dd62209388d
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);
    }
}