xiaoyong931011
2021-05-18 99335c9291eeae811531835da3766356a5aa733c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.xcong.excoin.modules.otc.controller;
 
import com.xcong.excoin.common.entity.FebsConstant;
import com.xcong.excoin.common.utils.FebsUtil;
import com.xcong.excoin.modules.otc.service.OtcService;
import lombok.RequiredArgsConstructor;
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("otcView")
@RequestMapping(FebsConstant.VIEW_PREFIX + "modules/otc")
@RequiredArgsConstructor
public class ViewController {
 
    private final OtcService otcService;
 
    /**
     * 获取商户审核列表
     */
    @GetMapping("otcShopList")
    @RequiresPermissions("otcShopList:view")
    public String otcShopList() {
        return FebsUtil.view("modules/otc/otcShopList");
    }
    /**
     * 获取委托单列表
     */
    @GetMapping("otcEntrustList")
    @RequiresPermissions("otcEntrustList:view")
    public String otcEntrustList() {
        return FebsUtil.view("modules/otc/otcEntrustList");
    }
 
    /**
     * 获取申诉列表
     */
    @GetMapping("otcAppealList")
    @RequiresPermissions("otcAppealList:view")
    public String otcAppealList() {
        return FebsUtil.view("modules/otc/otcAppealList");
    }
 
}