New file |
| | |
| | | package com.dsh.competition.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.dsh.competition.entity.UserCompetition; |
| | | import com.dsh.competition.mapper.UserCompetitionMapper; |
| | | import com.dsh.competition.service.UserCompetitionService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 赛事报名记录 服务实现类 |
| | | * </p> |
| | | * |
| | | * @author jqs |
| | | * @since 2023-06-26 |
| | | */ |
| | | @Service |
| | | public class UserCompetitionServiceImpl extends ServiceImpl<UserCompetitionMapper, UserCompetition> implements UserCompetitionService { |
| | | |
| | | |
| | | @Override |
| | | public List<UserCompetition> queryUsersCompetetions(Date startTime, Date endTime , Integer appUserId, List<Integer> comIds) { |
| | | return this.baseMapper.queryUsersCompetetions(startTime,endTime,appUserId,comIds); |
| | | } |
| | | } |