TASK:模块化;

This commit is contained in:
shahaibo
2025-03-27 13:33:09 +08:00
parent 1d9a89d7c7
commit e6234213f0
5 changed files with 44 additions and 0 deletions

View File

@@ -265,6 +265,12 @@ public class SavedCollectionController {
return Response.success(userLikeGroupService.brandDNASaveOrUpdate(brandDNADTO));
}
@ApiOperation(value = "brandDNAPage")
@PostMapping("/brandDNAPage")
public Response<PageBaseResponse<BrandDNAVO>> brandDNAPage(@Valid @RequestBody BrandDNAQueryDTO brandDNAQueryDTO) {
return Response.success(userLikeGroupService.brandDNAPage(brandDNAQueryDTO));
}
@ApiOperation(value = "brandLogoUpload")
@PostMapping("/brandLogoUpload")
public Response<String> brandDNASaveOrUpdate(@RequestParam("file") MultipartFile file) {