xiaoyong931011
2021-06-15 5e75c6faae3a68ec672db2ca509a2de9f863d0b6
src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java
@@ -2,10 +2,18 @@
import com.xcong.excoin.common.entity.FebsConstant;
import com.xcong.excoin.common.utils.FebsUtil;
import com.xcong.excoin.common.utils.RedisUtils;
import com.xcong.excoin.modules.systemSetting.entity.PlatformBannerEntity;
import com.xcong.excoin.modules.trademanage.vo.BzzNewPriceVo;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.annotation.Resource;
/**
 * @author wzy
@@ -15,7 +23,35 @@
@RequestMapping(FebsConstant.VIEW_PREFIX + "modules/trademanage")
public class ViewController {
   /**
    @Resource
    private RedisUtils redisUtils;
    /**
     * BZZ最新价
     */
    @GetMapping("bzzNewPrice")
    @RequiresPermissions("bzzNewPrice:view")
    public String bzzNewPrice() {
        return FebsUtil.view("modules/trademanage/bzzNewPrice");
    }
    /**
     * BZZ最新价---修改
     */
    @GetMapping("bzzNewPriceUpdate")
    @RequiresPermissions("platformBannerUpdate:update")
    public String platformBannerUpdate(Model model) {
        String newPrice = redisUtils.getString("bzz_order_new_price");
        BzzNewPriceVo bzzNewPriceVo = new BzzNewPriceVo();
        bzzNewPriceVo.setNewprice(newPrice);
        bzzNewPriceVo.setId(1L);
        model.addAttribute("member", bzzNewPriceVo);
        return FebsUtil.view("modules/trademanage/bzzNewPriceUpdate");
    }
    /**
    * 当前持仓
    */
    @GetMapping("contractHoldOrder")