This commit is contained in:
sjm
2023-12-27 14:46:15 +08:00
parent b028f37e48
commit 8da7d59494
3 changed files with 10 additions and 9 deletions

View File

@@ -19,7 +19,7 @@ public class QRCodeController {
private QRCService qrcService;
@RequestMapping(method = RequestMethod.POST, value = "/qrc_return")
public String QRCode(@RequestBody CollectIconList collect) throws Exception {
return qrcService.QR(collect);
public String QRCode(@RequestBody int url_id) throws Exception {
return qrcService.QR(url_id);
}
}