xiaoyong931011
2021-01-08 0d03d3fe08f4ca6865adf4147dbbc4830e231837
src/main/java/com/xcong/excoin/modules/helpCenter/controller/ViewController.java
@@ -27,7 +27,7 @@
     */
    @GetMapping("helpCenterList")
    @RequiresPermissions("helpCenterList:view")
    public String traderUpdate() {
    public String helpCenterList() {
        return FebsUtil.view("modules/helpCenter/helpCenterList");
    }
    
@@ -60,5 +60,39 @@
    public String helpCenterAdd() {
        return FebsUtil.view("modules/helpCenter/helpCenterAdd");
    }
    /**
     * 帮助中心---类型---列表
     * @return
     */
    @GetMapping("helpCenterTypeList")
    @RequiresPermissions("helpCenterTypeList:view")
    public String helpCenterTypeList() {
        return FebsUtil.view("modules/helpCenter/helpCenterTypeList");
    }
    /**
     * 帮助中心---类型---新增
     */
    @GetMapping("helpCenterTypeAdd")
    @RequiresPermissions("helpCenterTypeAdd:add")
    public String helpCenterTypeAdd() {
       return FebsUtil.view("modules/helpCenter/helpCenterTypeAdd");
    }
}