TASK: library分类;

This commit is contained in:
shahaibo
2023-11-07 15:12:55 +08:00
parent c8fe8c27f8
commit 269b6fa5fb
5 changed files with 47 additions and 2 deletions

View File

@@ -67,4 +67,11 @@ public class ClassificationController {
return Response.success(classificationService.queryClassification(classificationDTO));
}
@PostMapping("/relationLibrary")
@ApiOperationSupport(order = 4)
@ApiModelProperty(value = "关联", notes = "传入ClassificationDTO")
public Response<Boolean> relationLibrary(@Valid @RequestBody ClassificationDTO classificationDTO) {
return Response.success(classificationService.relationLibrary(classificationDTO));
}
}