fanli/src/main/java/com/yeshi/fanli/service/impl/redpack/RedPackWinInviteServiceImpl.java
@@ -430,4 +430,18 @@ return redPackWinInviteMapper.countTeamNumByTid(uid, teamUid); } @Override public List<RedPackWinInvite> query(long page, int count, String key, String type){ return redPackWinInviteMapper.query(count * (page - 1), count, key, type); } @Override public long count(String key, String type){ Long count = redPackWinInviteMapper.count(key, type); if (count == null) { count = 0L; } return count; } }