lisy
2023-07-27 05f49b22afa61ed9841619a844a3340dcb190b30
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";
    }
 
}