TASK:模块化;

This commit is contained in:
shahaibo
2025-03-31 15:02:44 +08:00
parent 6dcc492127
commit e6f990b766
3 changed files with 87 additions and 30 deletions

View File

@@ -124,4 +124,11 @@ public class ProjectController {
public void downloadZip(@RequestParam(value = "threeDSimpleId") Long threeDSimpleId, @RequestParam(value = "sizeType") String sizeType, @RequestParam(value = "size") String size, HttpServletResponse response) throws MinioException, IOException {
userLikeGroupService.downloadZip(threeDSimpleId, sizeType, size, response);
}
@PostMapping("/delete")
@ApiOperationSupport(order = 12)
@ApiOperation(value = "删除", notes = "传入project")
public Response<Boolean> delete(@RequestParam("projectId") Long projectId) {
return Response.success(userLikeGroupService.delete(projectId));
}
}