44323
2023-12-13 c03ee3f08abb3c7ffaed5b1f70ba1c9c4df15543
cloud-server-other/src/main/java/com/dsh/other/service/GameService.java
@@ -2,10 +2,12 @@
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
@@ -13,4 +15,6 @@
 */
public interface GameService extends IService<Game> {
    List<Game> queryAll(BallQueryDto ballQueryDto);
    List<Map<String, Object>> orderlist(BookingQuery bookingQuery);
}