| | |
| | | |
| | | 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> |
| | |
| | | */ |
| | | public interface GameMapper extends BaseMapper<Game> { |
| | | |
| | | List<Game> queryAll(BallQueryDto ballQueryDto); |
| | | List<Game> queryAll(@Param("query") BallQueryDto ballQueryDto); |
| | | |
| | | List<Map<String, Object>> orderlist(BookingQuery bookingQuery); |
| | | } |