From e93aad02d2dd2a6e624e81ea0adb3611a8fc43e5 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期四, 26 十二月 2024 17:16:19 +0800 Subject: [PATCH] 合并代码 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/GoodsService.java | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/GoodsService.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/GoodsService.java new file mode 100644 index 0000000..db2c9b8 --- /dev/null +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/GoodsService.java @@ -0,0 +1,34 @@ +package com.ruoyi.other.service; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.IService; +import com.ruoyi.other.api.domain.Goods; +import com.ruoyi.other.vo.GoodsVO; + +import java.util.List; + +/** + * <p> + * 服务类 + * </p> + * + * @author luodangjia + * @since 2024-11-20 + */ +public interface GoodsService extends IService<Goods> { + + List<GoodsVO> goodsList(Goods goods); + + GoodsVO goodsDetail(Long goodsId); + + List<Goods> getGoodsListByShopId(Integer shopId); + + void addGoods(Goods goods); + + void updateManageGoods(Goods goods); + + IPage<Goods> getManageGoodsList(Page<Goods> page, Goods goods); + + Goods getManageGoodsDetail(Long goodsId); +} -- Gitblit v1.7.1