1234567891011121314151617181920212223242526 |
- package com.bizmatics.controller.web;
- import com.bizmatics.service.RouteService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * 线路表
- *
- * @author ya
- * @since 2021-07-07
- */
- @RestController
- @RequestMapping("/route")
- public class RouteController {
- @Autowired
- private RouteService routeService;
- }
|