1
zj
2024-05-14 5259432d9a97529cf1ec2be5489a5b592bee78c4
src/main/java/com/nq/controller/protol/UserController.java
@@ -106,8 +106,8 @@
                              @RequestParam("buyType") Integer buyType,
                              @RequestParam("lever") Integer lever,
                              @RequestParam(value = "profitTarget",required = false)
                                  BigDecimal profitTarget,@RequestParam(value = "stopTarget",required = false) BigDecimal stopTarget, HttpServletRequest request) {
        return   this.iUserPositionService.buy(stockId, buyNum, buyType, lever,profitTarget,stopTarget, request);
                                  BigDecimal profitTarget,@RequestParam(value = "stopLoss",required = false) BigDecimal stopLoss, HttpServletRequest request) {
        return   this.iUserPositionService.buy(stockId, buyNum, buyType, lever,profitTarget,stopLoss, request);
    }
    //修改涨跌板
    @RequestMapping({"updateProfitTarget.do"})