SupportResourcesController.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package com.lqkj.ioc.controller;
  2. import com.lqkj.common.core.model.ResultUtil;
  3. import com.lqkj.ioc.service.SupportResourcesServer;
  4. import io.swagger.annotations.Api;
  5. import io.swagger.annotations.ApiOperation;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. /**
  11. * 配套资源
  12. */
  13. @Api(tags = {"配套资源"})
  14. @RestController
  15. @RequestMapping("/ioc/SupportResources")
  16. public class SupportResourcesController {
  17. @Autowired
  18. private SupportResourcesServer supportResourcesServer;
  19. @ApiOperation("配套资源-交通服务")
  20. @GetMapping("/transport")
  21. public ResultUtil transport(){
  22. return ResultUtil.success(supportResourcesServer.transport());
  23. }
  24. @ApiOperation("配套资源-便民服务")
  25. @GetMapping("/convenient")
  26. public ResultUtil convenient(){
  27. return ResultUtil.success(supportResourcesServer.convenient());
  28. }
  29. }