歌曲页面 增加 歌手页地址

This commit is contained in:
2024-07-10 14:09:26 +08:00
parent d528c4c10d
commit 981671d583

View File

@@ -44,7 +44,7 @@ public class TbShopSongController {
} }
Map<String, Object> stringObjectMap = tbShopSongService.queryAll(criteria); Map<String, Object> stringObjectMap = tbShopSongService.queryAll(criteria);
stringObjectMap.put("songUrl",code); stringObjectMap.put("songUrl",code);
return new ResponseEntity<>(tbShopSongService.queryAll(criteria), HttpStatus.OK); return new ResponseEntity<>(stringObjectMap, HttpStatus.OK);
} }
@PostMapping("createUrl") @PostMapping("createUrl")