123456789101112131415161718 |
- package com.flyer.foster.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 小程序用户 前端控制器
- * </p>
- *
- * @author flyer
- * @since 2024-05-09
- */
- @RestController
- @RequestMapping("/app-user")
- public class AppUserController {
- }
|