TASK: cloud、posetransfer;

This commit is contained in:
shahaibo
2025-06-17 14:51:19 +08:00
parent 0970127f68
commit c1c50cb28b
3 changed files with 27 additions and 1 deletions

View File

@@ -246,6 +246,12 @@ public class SavedCollectionController {
return Response.success(userLikeGroupService.relight(toProductImageDTO));
}
@ApiOperation(value = "转relight元素")
@PostMapping("/convertRelightElement")
public Response<ToProductElementVO> convertRelightElement(@RequestParam("id") Long id) {
return Response.success(userLikeGroupService.convertRelightElement(id));
}
@ApiOperation(value = "获取relight结果")
@PostMapping("/relightResult")
public Response<List<MagicToolResultVO>> getRelightResult(@Valid @RequestBody List<String> taskIdList) {