package cn.stylefeng.roses.kernel.system.integration.modular.system.dict;
|
|
import cn.stylefeng.roses.kernel.rule.enums.ResBizTypeEnum;
|
import cn.stylefeng.roses.kernel.scanner.api.annotation.ApiResource;
|
import cn.stylefeng.roses.kernel.scanner.api.annotation.GetResource;
|
import org.springframework.stereotype.Controller;
|
|
/**
|
* 字典视图控制器
|
*
|
* @author chenjinlong
|
* @date 2021/1/22 16:09
|
*/
|
@Controller
|
@ApiResource(name = "字典管理相关的界面渲染", resBizType = ResBizTypeEnum.SYSTEM)
|
public class DictViewController {
|
|
/**
|
* 字典管理-列表-视图
|
*
|
* @author chenjinlong
|
* @date 2021/1/22 16:09
|
*/
|
@GetResource(name = "字典管理-列表-视图", path = "/view/dict")
|
public String indexView() {
|
return "/modular/system/dict/dict.html";
|
}
|
|
/**
|
* 字典管理-添加-视图
|
*
|
* @author chenjinlong
|
* @date 2021/1/22 16:09
|
*/
|
@GetResource(name = "字典管理-添加-视图", path = "/view/dict/addView")
|
public String addView() {
|
return "/modular/system/dict/dict_add.html";
|
}
|
|
/**
|
* 字典管理-添加系统配置字典-视图
|
*
|
* @author chenjinlong
|
* @date 2021/1/22 16:09
|
*/
|
@GetResource(name = "字典管理-添加系统配置字典-视图", path = "/view/dict/addConfigView")
|
public String addConfigView() {
|
return "/modular/system/dict/dict_add_config.html";
|
}
|
|
|
/**
|
* 字典管理-编辑-视图
|
*
|
* @author chenjinlong
|
* @date 2021/1/22 16:09
|
*/
|
@GetResource(name = "字典管理-编辑-视图", path = "/view/dict/editView")
|
public String editView() {
|
return "/modular/system/dict/dict_edit.html";
|
}
|
|
}
|