luofl
2025-03-06 2ed6444f45d227e2acc6de65c3e8b582440fb83a
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/ShopClient.java
@@ -50,6 +50,9 @@
   @PostMapping("/shop/getShopIdByName")
    R<Set<Integer>> getShopIdByName(@RequestParam("shopName") String shopName);
   @PostMapping("/shop/getManagerByManagerName")
   R<Set<Long>> getManagerByManagerName(@RequestParam("managerName") String managerName);
   @PostMapping("/shop-balance-statement/getList")
   R<List<ShopBalanceStatement>> getShopBalanceStatementList(@RequestBody ShopBalanceStatement shopBalanceStatement);
   
@@ -70,5 +73,19 @@
   @GetMapping("/shop/getShopStatistics")
   public R<Map<String, BigDecimal>> getShopStatistics();
   public R<Map<String, BigDecimal>> getShopStatistics(@RequestParam("shopId") Integer shopId);
   /**
    * 获取指定用户的服务商
    */
   @GetMapping("/shop/getServiceProvider")
   R<Shop> getServiceProvider(@RequestParam("appUserId") Long appUserId);
   /**
    * 获取指定用户的高级服务商
    */
   @GetMapping("/shop/getSuperiorServiceProvider")
   public R<Shop> getSuperiorServiceProvider(@RequestParam("appUserId") Long appUserId);
}