Merge branch 'dev/dev_xp' into dev/dev

This commit is contained in:
2025-04-02 11:09:41 +08:00
6 changed files with 38 additions and 43 deletions

View File

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