SmartVisitorController.java 393 B

123456789101112131415161718192021
  1. package com.template.controller;
  2. import com.template.api.SmartVisitorControllerAPI;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. /**
  6. * <p>
  7. * 前端控制器
  8. * </p>
  9. *
  10. * @author ceshi
  11. * @since 2023-12-04
  12. */
  13. @RestController
  14. public class SmartVisitorController implements SmartVisitorControllerAPI {
  15. }