xuhy
2024-12-16 1734f2d56162a1fdb556632dc36fcef0ca57851c
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
29
30
package com.jilongda.applet.controller;
 
 
import com.jilongda.applet.service.TStoreService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
 
import org.springframework.web.bind.annotation.RestController;
 
/**
 * <p>
 * 门店表 前端控制器
 * </p>
 *
 * @author 无关风月
 * @since 2024-12-09
 */
@Api(tags = "门店表")
@RestController
@RequestMapping("/t-store")
public class TStoreController {
 
    @Autowired
    private TStoreService tStoreService;
 
 
 
 
}