xiaoyong931011
2022-03-04 a99275f05dcbd532ee5b8c5f9c5a80afea16e16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.zhiya.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;
 
@Controller("zhiyaView")
@RequestMapping(FebsConstant.VIEW_PREFIX + "modules/zhiya")
public class ViewController {
 
    /**
     * 质押账户记录
     */
    @GetMapping("zhiyaList")
    @RequiresPermissions("zhiyaList:view")
    public String zhiyaList() {
        return FebsUtil.view("modules/zhiya/zhiyaList");
    }
}