44323
2023-11-15 f8c9479d2f33515376e5c0d87734edec2e15ad6f
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
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("/tPhysicalAppoint")
public class TPhysicalAppointManageController {
 
    private String PREFIX = "/system/tPhysicalAppoint/";
 
    /**
     * 优惠券审核列表页
     */
    @RequestMapping("")
    public String index(Model model) {
        return PREFIX + "TPhysicalAppoint.html";
    }
 
 
 
}