123456789101112131415161718 |
- package com.pj.api;
- import com.pj.project.tb_venues.TbVenuesService;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import javax.annotation.Resource;
- @RequestMapping("mini")
- @RestController
- public class MiniController {
- @Resource
- private TbVenuesService tbVenuesService;
- }
|