Merge branch 'dev/dev_xp' into dev/dev

This commit is contained in:
2025-04-01 17:16:27 +08:00
6 changed files with 116 additions and 24 deletions

View File

@@ -203,4 +203,10 @@ public class LibraryController {
return Response.success(true);
}
@ApiOperation(value = "将系统模特添加到个人library")
@PostMapping("addSysModelToLib")
public Response<Long> addSysModelToLib(@ApiParam("系统模特id") @RequestPart("sysModelId")long sysModelId){
return Response.success(libraryService.addSysModelToLib(sysModelId));
}
}