package com.example.takeawaysystemserver.controller; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * @author Ethereal * @date 2024/7/12 * @description */ @RestController @RequestMapping("order") @Api(tags = "订单模块") public class OrderController { }