44323
2023-10-11 6a8b55a2183720ff6106f581695298168896cadc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dsh.other.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.other.entity.BallQueryDto;
import com.dsh.other.entity.BookingQuery;
import com.dsh.other.entity.Game;
import com.dsh.other.entity.Protocol;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author zhibing.pu
 * @date 2023/6/14 15:04
 */
public interface GameService extends IService<Game> {
    List<Game> queryAll(BallQueryDto ballQueryDto);
 
    List<Map<String, Object>> orderlist(BookingQuery bookingQuery);
}