package com.xcong.excoin.modules.authentication.controller;
|
|
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;
|
|
import com.xcong.excoin.common.entity.FebsConstant;
|
import com.xcong.excoin.common.utils.FebsUtil;
|
|
/**
|
* 身份信息审核
|
*/
|
@Controller("authenticationView")
|
@RequestMapping(FebsConstant.VIEW_PREFIX + "authentication/confirm")
|
public class ViewController {
|
|
@GetMapping("authentication")
|
@RequiresPermissions("authentication:view")
|
public String authenticationConfirmToPage() {
|
return FebsUtil.view("modules/authentication/authentication");
|
}
|
|
}
|