| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.competition.entity.UserCompetition; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public interface UserCompetitionMapper extends BaseMapper<UserCompetition> { |
| | | |
| | | List<UserCompetition> queryDeRecordDetails(Integer appUserId,List<Integer> collect,String startTime, String endTime); |
| | | |
| | | List<UserCompetition> queryUsersCompetetions(@Param("startTime") Date startTime, |
| | | @Param("endTime") Date endTime , |
| | | @Param("appUserId") Integer appUserId, |
| | | @Param("comIds") List<Integer> comIds); |
| | | |
| | | } |