package com.ruoyi.basic.controller; import org.springframework.web.bind.annotation.RequestMapping; import lombok.AllArgsConstructor; import org.springframework.web.bind.annotation.RestController; /** *
* 前端控制器 *
* * @author ruoyi * @since 2025-06-03 */ @RestController @AllArgsConstructor @RequestMapping("/customer") public class CustomerController { }