yujian
2020-06-11 20bb4f95184453d4addfd27e40a78f3c63bcf6c3
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;
   }
}