|
@@ -8,6 +8,7 @@ import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.modules.app.service.IDetailService;
|
|
|
import org.jeecg.modules.app.vo.PlaceInfoVO;
|
|
|
import org.jeecg.modules.app.vo.stadium.StadiumConcertsVO;
|
|
|
+import org.jeecg.modules.app.vo.stadium.StadiumFindById;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -34,7 +35,7 @@ public class StadiumController {
|
|
|
**/
|
|
|
@GetMapping("/getPlaceInfo")
|
|
|
@Operation(summary = "场次详情查询-缺少已定状态和可预约数逻辑 ")
|
|
|
- public Result<List<StadiumConcertsVO>> findConcerts(){
|
|
|
+ public Result<List<StadiumConcertsVO>> findConcerts(StadiumFindById stadiumFindById){
|
|
|
String site_id = "1942781931946946561";
|
|
|
String category_id = "1942391828774895617";
|
|
|
return iDetailService.findConcerts(site_id,category_id);
|