TASK:模块化;

This commit is contained in:
shahaibo
2025-04-10 11:01:24 +08:00
parent 3883864558
commit 6b62d26544
11 changed files with 209 additions and 186 deletions

View File

@@ -291,7 +291,7 @@ public class SavedCollectionController {
@ApiOperation(value = "brandDNAUpload")
@PostMapping("/brandDNAUpload")
public Response<Library> brandDNAUpload(@RequestParam("file") MultipartFile file, @RequestParam("brandId") Long brandId) throws IOException {
public Response<LibraryUpdateVo> brandDNAUpload(@RequestParam("file") MultipartFile file, @RequestParam("brandId") Long brandId) throws IOException {
return Response.success(userLikeGroupService.brandDNAUpload(file, brandId));
}