lisy
2023-07-27 2fd64c63e833be768822166c2b6dbff53c0f2823
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
package com.dsh.guns.modular.system.controller.code;
 
 
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
 
 
/**
 * 优惠券管理 控制器
 */
 
@Controller
@RequestMapping("/tCouponManage")
public class TCouponController {
 
 
 
    private String PREFIX = "/system/tCoupon/";
 
    /**
     * 跳转到车辆管理首页
     */
    @RequestMapping("")
    public String index(Model model) {
        return PREFIX + "TCoupon.html";
    }
 
 
}