puzhibing
2023-07-31 c743f4413a00fc063bbbd9d851b6d0c3fff10581
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
package com.dsh.guns.modular.system.controller.code;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * 课程管理
 * @author zhibing.pu
 * @Date 2023/7/27 15:54
 */
@Controller
@RequestMapping("/course")
public class TCourseController {
 
    private String PREFIX = "/system/course/";
 
 
    /**
     * 跳转到列表页
     * @return
     */
    @GetMapping("/showCourseList")
    public String showCourseList(){
        return PREFIX + "course.html";
    }
 
 
    /**
     * 跳转到添加页
     * @return
     */
    @GetMapping("/showAddCourse")
    public String showAddCourse(){
        return PREFIX + "course_add.html";
    }
 
}