TASK: library关联分类;

This commit is contained in:
shahaibo
2023-11-14 15:59:11 +08:00
parent 6d673d6f32
commit 211f589d84
4 changed files with 25 additions and 0 deletions

View File

@@ -74,4 +74,11 @@ public class ClassificationController {
return Response.success(classificationService.relationLibrary(classificationDTO));
}
@PostMapping("/getRelClassificationIdList")
@ApiOperationSupport(order = 5)
@ApiModelProperty(value = "获取关联分类IDList", notes = "传入ClassificationDTO")
public Response<List<Long>> getRelClassificationIdList(@Valid @RequestBody ClassificationDTO classificationDTO) {
return Response.success(classificationService.getRelClassificationIdList(classificationDTO));
}
}