1
zj
2024-11-10 fc4b1e66b241df686dbd7bebb6df6793060a8107
src/main/java/com/nq/controller/protol/UserController.java
@@ -185,11 +185,11 @@
    //挂单操作-列表
    @RequestMapping({"orderList.do"})
    @ResponseBody
    public ServerResponse orderList(HttpServletRequest request) {
    public ServerResponse orderList(@RequestParam("stockType") String stockType,HttpServletRequest request) {
        ServerResponse serverResponse = null;
        try {
            serverResponse = this.userPendingorderService.orderList(request);
            serverResponse = this.userPendingorderService.orderList(stockType,request);
        } catch (Exception e) {
            log.error("挂单操作-列表 = {}", e);
        }