From 19df67e19f23cd2a04d1c7f355e1e656f4140af4 Mon Sep 17 00:00:00 2001
From: huliguo <2023611923@qq.com>
Date: 星期四, 17 四月 2025 20:04:14 +0800
Subject: [PATCH] 后台:首页统计、系统管理、广告管理、用户管理、商品分类管理

---
 ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/ShopService.java |   30 +++++++++++++++++++++++++++---
 1 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/ShopService.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/ShopService.java
index 2626f14..ab445f8 100644
--- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/ShopService.java
+++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/ShopService.java
@@ -2,12 +2,15 @@
 
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.service.IService;
+
+import com.ruoyi.common.core.web.page.PageInfo;
 import com.ruoyi.other.api.domain.Shop;
-import com.ruoyi.other.vo.NearbyShopVO;
-import com.ruoyi.other.vo.SaveWithdrawalAccount;
-import com.ruoyi.other.vo.ShopDetailVO;
+import com.ruoyi.other.api.domain.ShopBalanceStatement;
+import com.ruoyi.other.dto.AddGoodsDTO;
+import com.ruoyi.other.vo.*;
 
 import java.math.BigDecimal;
+import java.time.LocalDateTime;
 import java.util.List;
 
 /**
@@ -36,4 +39,25 @@
     void saveWithdrawalAccount(SaveWithdrawalAccount saveWithdrawalAccount);
 
 
+    /**
+     * 店铺余额统计
+     */
+    ShopBalanceVO getShopBalance(Integer shopId);
+
+    /**
+     * 店铺余额变更明细
+     */
+    PageInfo<ShopBalanceStatementVO> getShopBalanceStatementList(Integer shopId, LocalDateTime startTime, LocalDateTime endTime, Integer type, Integer pageCurr, Integer pageSize);
+
+    /**
+     * 店铺内商品列表 门店后台
+     */
+
+    List<GoodsVO> getGoodsListByShopId(PageInfo<GoodsVO> pageInfo, Integer shopId);
+
+    GoodsVO goodsDetail(Long goodsId);
+
+    Integer addGoodsByShop(AddGoodsDTO addGoodsDTO);
+
+    Integer editGoodsByShop(AddGoodsDTO addGoodsDTO);
 }

--
Gitblit v1.7.1