New file |
| | |
| | | package com.xcong.excoin.modules.trademanage.controller; |
| | | |
| | | import com.xcong.excoin.common.entity.FebsConstant; |
| | | import com.xcong.excoin.common.utils.FebsUtil; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @date 2020-06-10 |
| | | **/ |
| | | @Controller("contractHoldOrderView") |
| | | @RequestMapping(FebsConstant.VIEW_PREFIX + "modules/trademanage") |
| | | public class ViewController { |
| | | |
| | | @GetMapping("contractHoldOrder") |
| | | @RequiresPermissions("contractHoldOrder:view") |
| | | public String contractHoldOrder() { |
| | | return FebsUtil.view("modules/trademanage/contractHoldOrder"); |
| | | } |
| | | |
| | | } |