TestController.java 318 B

123456789101112131415161718
  1. package com.fdkankan.scene.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * <p>
  6. * TODO
  7. * </p>
  8. *
  9. * @author dengsixing
  10. * @since 2022/8/17
  11. **/
  12. @RestController
  13. @RequestMapping("/test")
  14. public class TestController {
  15. }