AppUserController.java 345 B

123456789101112131415161718
  1. package com.flyer.foster.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * <p>
  6. * 小程序用户 前端控制器
  7. * </p>
  8. *
  9. * @author flyer
  10. * @since 2024-05-09
  11. */
  12. @RestController
  13. @RequestMapping("/app-user")
  14. public class AppUserController {
  15. }