admin
2019-03-13 33b4ed2bbf28ec16b66e552680f56a691a4e908d
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserInfoService.java
@@ -1,14 +1,13 @@
package com.yeshi.fanli.service.inter.user;
import java.math.BigDecimal;
import java.net.ConnectException;
import java.util.Date;
import java.util.List;
import java.util.Map;
import com.yeshi.fanli.entity.admin.UserInfoAdmin;
import com.yeshi.fanli.entity.bus.user.InviteUser;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.vo.user.UserInfoVO;
public interface UserInfoService {
   /**
@@ -109,10 +108,10 @@
    * @param orderMode
    * @return
    */
   public List<UserInfoAdmin> query(long start, int count, String key, Integer userType,
   public List<UserInfoVO> query(long start, int count, Integer userState, String key, Integer keyType, String userRank,
         Integer days, String startTime, String endTime,Integer orderField, Integer orderMode);
   public long queryCount(String key, Integer userType, Integer days, String startTime,
   public long queryCount(Integer userState, String key, Integer keyType, String userRank, Integer days, String startTime,
         String endTime);
   public double querySumMoney(String key, Integer userType, Integer days, String startTime, String endTime);
@@ -148,4 +147,12 @@
    */
   public List<Long> longTimeNoLogin(int daysNum, List<Long> list);
   /**
    * 根据电话号码、邀请码获取邀请用户
    * @param phone
    * @param inviteCode
    * @return
    */
   public UserInfo getInfoByPhoneOrInviteCode(String phone, String inviteCode);
}