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