From d9bcc1f955e1cddc6a38e55f769205a9330d3c89 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期二, 10 十二月 2024 17:06:37 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsCategoryController.java | 61 ++++++++++++++++++++++++++---- 1 files changed, 52 insertions(+), 9 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsCategoryController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsCategoryController.java index b6c5b53..8b38be4 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsCategoryController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/GoodsCategoryController.java @@ -1,14 +1,17 @@ package com.ruoyi.other.controller; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ruoyi.common.core.domain.R; +import com.ruoyi.common.core.utils.StringUtils; +import com.ruoyi.common.core.web.controller.BaseController; +import com.ruoyi.common.core.web.page.TableDataInfo; import com.ruoyi.other.api.domain.GoodsCategory; import com.ruoyi.other.service.GoodsCategoryService; -import io.swagger.annotations.ApiOperation; -import io.swagger.annotations.Api; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; +import io.swagger.annotations.*; +import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.List; @@ -23,10 +26,51 @@ */ @RestController @RequestMapping("/goods-category") -@Api(tags = "商品分类") -public class GoodsCategoryController { +@Api("商品分类") +public class GoodsCategoryController extends BaseController { @Resource private GoodsCategoryService goodsCategoryService; + + + @PostMapping("/addGoodsCategory") + @ApiOperation(value = "添加商品分类", tags = {"管理后台-商品分类"}) + public R<Void> addGoodsCategory(@RequestBody GoodsCategory goodsCategory){ + goodsCategoryService.save(goodsCategory); + return R.ok(); + } + + @PutMapping("/updateGoodsCategory") + @ApiOperation(value = "修改商品分类", tags = {"管理后台-商品分类"}) + public R<Void> updateGoodsCategory(@RequestBody GoodsCategory goodsCategory){ + goodsCategoryService.updateById(goodsCategory); + return R.ok(); + } + + @GetMapping("/getGoodsCategoryById") + @ApiOperation(value = "商品分类详情", tags = {"管理后台-商品分类"}) + public R<GoodsCategory> getGoodsCategoryById(@RequestParam("id") Integer id){ + return R.ok(goodsCategoryService.getById(id)); + } + + + @GetMapping("/getList") + @ApiOperation(value = "商品分类列表", tags = {"管理后台-商品分类"}) + public R<Page<GoodsCategory>> list(@ApiParam("页码") @RequestParam Integer PageNum,@ApiParam("每一页数据大小") Integer pageSize, GoodsCategory goodsCategory){ + Page<GoodsCategory> page = goodsCategoryService.lambdaQuery() + .like(StringUtils.isNotEmpty(goodsCategory.getName()),GoodsCategory::getName, goodsCategory.getName()) + .page(Page.of(PageNum, pageSize)); + return R.ok(page); + } + + @DeleteMapping("/delete") + @ApiOperation(value = "删除商品分类", tags = {"管理后台-商品分类"}) + public R<Void> delete(@RequestParam("id") Integer id){ + goodsCategoryService.removeById(id); + return R.ok(); + } + + + @GetMapping("/index/list") @ApiOperation(value = "商品分类", tags = {"小程序-首页"}) @@ -34,8 +78,7 @@ List<GoodsCategory> indexlist = goodsCategoryService.lambdaQuery() .orderByDesc(GoodsCategory::getCreateTime) .last("limit 8") - .list() - ; + .list(); return R.ok(indexlist); } @GetMapping("/list") -- Gitblit v1.7.1