lisy
2023-08-01 6dd3ce5d438e90e453bf3e44e287aa835ffda339
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
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("/tIntroductionCourtesy")
public class TIntroductionCourtesyController {
 
    private String PREFIX = "/system/tIntroductionCourtesy/";
 
    /**
     * 优惠券审核列表页
     */
    @RequestMapping("")
    public String index(Model model) {
        return PREFIX + "tIntroductionCourtesy.html";
    }
 
}