yujian
2020-04-28 8db3c8da1693885fb22bbcaee5c3e5278c7eef29
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;
   }
}