新版仿ok交易所-后端
1
zj
2026-01-21 01e664e79f39091408570625f538898683658b92
trading-order-admin/src/main/java/com/yami/trading/api/controller/ApiIdentifyingCodeController.java
@@ -9,6 +9,8 @@
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.io.IOException;
@RequestMapping("api/idcode")
@RestController
@Api(tags = "idcode")
@@ -18,7 +20,7 @@
    private IdentifyingCodeService identifyingCodeService;
    @RequestMapping("execute")
    public Result execute(@RequestParam String target) {
    public Result execute(@RequestParam String target) throws IOException {
            identifyingCodeService.send(target, IPHelper.getIpAddr());
        return Result.succeed(null);
    }