From 01d6fa48a0de7a21988e89f71721b6b85e53b517 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期四, 06 三月 2025 16:33:53 +0800 Subject: [PATCH] 去掉资讯图片必填限制 --- ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/controller/forepart/ForepartGoodsBrandController.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/controller/forepart/ForepartGoodsBrandController.java b/ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/controller/forepart/ForepartGoodsBrandController.java index 2cb3ad1..4eb22e0 100644 --- a/ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/controller/forepart/ForepartGoodsBrandController.java +++ b/ruoyi-modules/ruoyi-goods/src/main/java/com/ruoyi/goods/controller/forepart/ForepartGoodsBrandController.java @@ -6,6 +6,7 @@ import com.ruoyi.common.core.domain.R; import com.ruoyi.goods.service.IGoodsBrandService; import com.ruoyi.system.api.domain.GoodsBrand; +import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.RequiredArgsConstructor; import org.springframework.web.bind.annotation.*; @@ -24,12 +25,12 @@ @RestController @RequestMapping("/forepart/goods-brand") @RequiredArgsConstructor +@Api(value = "用戶端-商品品牌接口", tags = "用戶端-商品品牌接口", description = "用戶端-商品品牌接口") public class ForepartGoodsBrandController { @Resource private IGoodsBrandService iGoodsBrandService; @PostMapping("/getGoodsSeriesList") - @ResponseBody @ApiOperation(value = "用户端-商品筛选获取品牌") public R<List<GoodsBrand>> getGoodsSeriesList() { LambdaQueryWrapper<GoodsBrand> wrapper= Wrappers.lambdaQuery(); -- Gitblit v1.7.1