From 4c902d9c20dd965d1ec832760809c622d1df9aac Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 17 Jun 2021 11:17:03 +0800 Subject: [PATCH] 20210617 开售开关 --- src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java | 70 ++++++++++++++++++++++++++++++++++- 1 files changed, 68 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java b/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java index 1e1c567..46478a7 100644 --- a/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java +++ b/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,47 @@ @RequestMapping(FebsConstant.VIEW_PREFIX + "modules/trademanage") public class ViewController { - /** + @Resource + private RedisUtils redisUtils; + + /** + * 期貨记录 + */ + @GetMapping("gbzOrderList") + @RequiresPermissions("gbzOrderList:view") + public String gbzOrderList() { + return FebsUtil.view("modules/trademanage/gbzOrderList"); + } + + /** + * 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"); + String bzzStart = redisUtils.getString("bzz_start"); + BzzNewPriceVo bzzNewPriceVo = new BzzNewPriceVo(); + bzzNewPriceVo.setNewprice(newPrice); + bzzNewPriceVo.setBzzStart(Integer.parseInt(bzzStart)); + bzzNewPriceVo.setId(1L); + model.addAttribute("member", bzzNewPriceVo); + return FebsUtil.view("modules/trademanage/bzzNewPriceUpdate"); + } + + + /** * 当前持仓 */ @GetMapping("contractHoldOrder") @@ -60,6 +108,15 @@ public String accountInfoAlone() { return FebsUtil.view("modules/trademanage/accountInfoAlone"); } + /** + * 账户信息---Test + * @return + */ + @GetMapping("accountInfoAloneTest") + @RequiresPermissions("accountInfoAloneTest:view") + public String accountInfoAloneTest() { + return FebsUtil.view("modules/trademanage/accountInfoAloneTest"); + } /** * 返佣明细 @@ -102,7 +159,7 @@ } /** - * 历史委托明细--- Test + * 历史委托明细---Test * @return */ @GetMapping("historyOrderAloneTest") @@ -130,5 +187,14 @@ public String agentReturnInfosAlone() { return FebsUtil.view("modules/trademanage/agentReturnInfosAlone"); } + /** + * 返佣总明细--Test + * @return + */ + @GetMapping("agentReturnInfosAloneTest") + @RequiresPermissions("agentReturnInfosAloneTest:view") + public String agentReturnInfosAloneTest() { + return FebsUtil.view("modules/trademanage/agentReturnInfosAloneTest"); + } } -- Gitblit v1.9.1