RouteController.java 516 B

1234567891011121314151617181920212223242526
  1. package com.bizmatics.controller.web;
  2. import com.bizmatics.service.RouteService;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.web.bind.annotation.RestController;
  7. /**
  8. * 线路表
  9. *
  10. * @author ya
  11. * @since 2021-07-07
  12. */
  13. @RestController
  14. @RequestMapping("/route")
  15. public class RouteController {
  16. @Autowired
  17. private RouteService routeService;
  18. }