Pu Zhibing
2025-02-07 810d81a44d78bc3e7c42c2f116cc9968ab04baef
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/ShopClient.java
@@ -12,7 +12,9 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
@@ -45,8 +47,8 @@
   @PostMapping("/shop/getShopByUserIds")
   R<List<Shop>> getShopByUserIds(@RequestBody List<Long> userIds);
   @GetMapping("/shop/getShopIdByName")
    R<Set<Integer>> getShopIdByName(String shopName);
   @PostMapping("/shop/getShopIdByName")
    R<Set<Integer>> getShopIdByName(@RequestParam("shopName") String shopName);
   @PostMapping("/shop-balance-statement/getList")
   R<List<ShopBalanceStatement>> getShopBalanceStatementList(@RequestBody ShopBalanceStatement shopBalanceStatement);
@@ -65,4 +67,8 @@
    */
   @PostMapping("/shop/getAllShop")
   R<List<Shop>> getAllShop();
   @GetMapping("/shop/getShopStatistics")
   public R<Map<String, BigDecimal>> getShopStatistics();
}