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";
|
}
|
|
}
|