1
zj
2024-10-29 57c2b6875b5f026a1432f3209471d6b4503f43fc
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);
        }