luodangjia
2024-04-28 94e9dc3adb80baf6e1d7d56e54a93917996bc339
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
46
47
48
49
50
51
package cn.stylefeng.roses.kernel.system.integration.modular.system.organization;
 
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 2020/12/28 9:28
 */
@Controller
@ApiResource(name = "组织机构管理控制器界面", resBizType = ResBizTypeEnum.SYSTEM)
public class OrganizationViewController {
 
    /**
     * 机构管理-首页-视图
     *
     * @author chenjinlong
     * @date 2020/11/04 11:07
     */
    @GetResource(name = "机构管理-首页-视图", path = "/view/organization")
    public String indexView() {
        return "/modular/system/organization/organization.html";
    }
 
    /**
     * 机构管理—新增-视图
     *
     * @author chenjinlong
     * @date 2020/11/04 11:07
     */
    @GetResource(name = "机构管理—新增-视图", path = "/view/organization/addView")
    public String addView() {
        return "/modular/system/organization/organization_add.html";
    }
 
    /**
     * 机构管理_修改_视图
     *
     * @author chenjinlong
     * @date 2020/11/04 11:07
     */
    @GetResource(name = "机构管理-修改-视图", path = "/view/organization/editView")
    public String editView() {
        return "/modular/system/organization/organization_edit.html";
    }
 
}