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; /** *

* 公告 Mapper 接口 *

* * @author jqs * @since 2023-07-03 */ public interface GameMapper extends BaseMapper { List queryAll(@Param("query") BallQueryDto ballQueryDto); List> orderlist(BookingQuery bookingQuery); }