ExampleDetailsController.java 551 B

123456789101112131415161718192021222324
  1. package com.fjhx.controller.example;
  2. import com.fjhx.service.example.ExampleDetailsService;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RestController;
  6. /**
  7. * <p>
  8. * 实例明细 前端控制器
  9. * </p>
  10. *
  11. * @author ${author}
  12. * @since 2022-08-23
  13. */
  14. @RestController
  15. @RequestMapping("/exampleDetails")
  16. public class ExampleDetailsController {
  17. @Autowired
  18. private ExampleDetailsService exampleDetailsService;
  19. }