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("/tDiscountExamine")
|
public class TDiscountExamineController {
|
|
private String PREFIX = "/system/tDiscountExamine/";
|
|
/**
|
* 折扣审核列表页
|
*/
|
@RequestMapping("")
|
public String index(Model model) {
|
return PREFIX + "TDiscountExamine.html";
|
}
|
|
|
|
}
|