| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | 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 com.dsh.other.mapper.GameMapper; |
| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public List<Game> queryAll(BallQueryDto ballQueryDto) { |
| | | return this.baseMapper.queryAll(ballQueryDto); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> orderlist(BookingQuery bookingQuery) { |
| | | List<Map<String, Object>> orderlist = this.baseMapper.orderlist(bookingQuery); |
| | | |
| | | return orderlist; |
| | | } |
| | | } |