liujie
4 天以前 a78782b361c2bd038cdf30d8533f9e3926065d4a
cloud-server-other/src/main/java/com/dsh/other/mapper/GameMapper.java
@@ -2,10 +2,13 @@
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>
@@ -17,5 +20,7 @@
 */
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);
}