From 537ed054fe1d9b40b4908cf41ce8c9a6a82d0df9 Mon Sep 17 00:00:00 2001
From: 44323 <443237572@qq.com>
Date: 星期一, 18 三月 2024 16:04:04 +0800
Subject: [PATCH] 部分bug修改

---
 cloud-server-management/src/main/java/com/dsh/course/feignClient/other/BallClient.java |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/cloud-server-management/src/main/java/com/dsh/course/feignClient/other/BallClient.java b/cloud-server-management/src/main/java/com/dsh/course/feignClient/other/BallClient.java
index 528b5ab..663fd5d 100644
--- a/cloud-server-management/src/main/java/com/dsh/course/feignClient/other/BallClient.java
+++ b/cloud-server-management/src/main/java/com/dsh/course/feignClient/other/BallClient.java
@@ -4,6 +4,7 @@
 import com.dsh.course.dto.TStudentDto;
 import com.dsh.course.feignClient.other.model.Banner;
 import com.dsh.course.feignClient.other.model.GameDataQuery;
+import com.dsh.course.feignClient.other.model.Site;
 import com.dsh.course.feignClient.other.model.TGameRecord;
 import com.dsh.guns.modular.system.model.*;
 import com.dsh.guns.modular.system.model.dto.BallQueryDto;
@@ -33,6 +34,13 @@
     void saveConfig(@RequestBody List<TGameConfig> gameConfigList);
     @PostMapping("/queryGame")
     Game queryGame(@RequestParam("id") Integer id);
+    // 查询未配置智慧球场的场地 智慧球场添加使用
+    @PostMapping("/getSiteList")
+    List<Site> getSiteList(@RequestParam("storeId") Integer storeId);
+    // 查询未配置智慧球场的场地 包含当前配置的场地 智慧球场编辑使用
+    @PostMapping("/getSiteList1")
+    List<Site> getSiteList1(@RequestParam("id") Integer id);
+
     @PostMapping("/listorder")
     List<Map<String, Object>> listorder(@RequestBody BookingQuery bookingQuery);
 }

--
Gitblit v1.7.1