| | |
| | | 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> queryUsersCompetetions(@Param("appUserId") Integer appUserId,@Param("comIds") List<Integer> comIds); |
| | | List<UserCompetition> queryUsersCompetetions(@Param("startTime") Date startTime, |
| | | @Param("endTime") Date endTime , |
| | | @Param("appUserId") Integer appUserId, |
| | | @Param("comIds") List<Integer> comIds); |
| | | |
| | | } |