| | |
| | | package com.ruoyi.goods.controller.mamagement; |
| | | |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | |
| | | * @author mitao |
| | | * @since 2024-05-16 |
| | | */ |
| | | @Slf4j |
| | | @RestController |
| | | @RequiredArgsConstructor |
| | | @RequestMapping("/mgt/goods-group-purchase") |
| | | @Api(value = "管理后台商品团购相关接口", tags = {"管理后台接口"}) |
| | | public class MgtGoodsGroupPurchaseController { |
| | | |
| | | } |