股票列表测试

This commit is contained in:
dengli
2023-12-02 11:34:41 +08:00
parent d0ff0077a0
commit 899ac0d67f
2 changed files with 28 additions and 0 deletions

View File

@@ -122,6 +122,14 @@ public class StockApiController {
return this.stockService.getYCStockInfo(stockCode);
}
//印度股票列表 英情
@RequestMapping({"getINDStockList.do"})
@ApiOperation(value = "印度股票列表", httpMethod = "GET")
@ResponseBody
public ServerResponse getINDStockList(@RequestParam("pageSize") Integer pageSize, @RequestParam("pageNum") Integer pageNum) {
return this.stockService.getINDStockList(pageSize, pageNum);
}
//印度股票时线-K线
@RequestMapping({"getINDTimeK.do"})
@ApiOperation(value = "印度股票K线", httpMethod = "GET")