From 9909c23061541816b21d560f765d0a7274fc6323 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 18 May 2021 15:12:34 +0800 Subject: [PATCH] 20210518 商户审核 --- src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java b/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java index 0e01896..377dfbf 100644 --- a/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java +++ b/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java @@ -1,4 +1,28 @@ 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"); + } + } -- Gitblit v1.9.1