xuhy
2024-12-16 7ea8d1c6da749da69516f47593ae47546a0d3d4c
applet/src/main/java/com/jilongda/applet/controller/TStoreController.java
@@ -1,6 +1,9 @@
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;
@@ -13,9 +16,16 @@
 * @author 无关风月
 * @since 2024-12-09
 */
@Api(tags = "门店表")
@RestController
@RequestMapping("/t-store")
public class TStoreController {
    @Autowired
    private TStoreService tStoreService;
}