package com.dsh.other.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dsh.other.entity.BallQueryDto;
|
import com.dsh.other.entity.BookingQuery;
|
import com.dsh.other.entity.Game;
|
import com.dsh.other.entity.Notice;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 公告 Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-07-03
|
*/
|
public interface GameMapper extends BaseMapper<Game> {
|
|
List<Game> queryAll(@Param("query") BallQueryDto ballQueryDto);
|
|
List<Map<String, Object>> orderlist(BookingQuery bookingQuery);
|
}
|