This commit is contained in:
2023-12-27 16:47:54 +08:00
parent 64173c1afa
commit 9f198edd1e
20 changed files with 110 additions and 65 deletions

View File

@@ -1,7 +1,8 @@
package com.lovenav.service;
import com.lovenav.entity.CollectIconList;
import org.springframework.web.bind.annotation.RequestBody;
public interface QRCService {
public String QR(int url_id) throws Exception;
public String QR(@RequestBody Integer url_id) throws Exception;
}