package com.dsh.other.service.impl; 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 com.dsh.other.mapper.NoticeMapper; import com.dsh.other.service.GameService; import com.dsh.other.service.NoticeService; import org.springframework.stereotype.Service; import java.util.List; import java.util.Map; /** *
* 公告 服务实现类 *
* * @author jqs * @since 2023-07-03 */ @Service public class GameServiceImpl extends ServiceImpl