1
ydj
2024-06-03 ba9e35f79fa9a703992c58c5951cd1593749172e
src/main/java/com/nq/controller/StockApiController.java
@@ -77,7 +77,13 @@
            @RequestParam("interval") String interval,
            @RequestParam("stockType") String stockType
    ) {
        return this.iStockService.getKData(pid,interval,stockType);
        try {
            Object o = this.iStockService.getKData(pid,interval,stockType);
            return o;
        }catch (Exception e) {
            e.printStackTrace();
        }
     return null;
    }