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