yujian
2019-04-22 b6c37e4bc38db88a360d0f2c6099183f9bb75bdc
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserInfoService.java
@@ -1,14 +1,14 @@
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.exception.user.UserInfoException;
import com.yeshi.fanli.vo.user.UserInfoVO;
public interface UserInfoService {
   /**
@@ -109,10 +109,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 +148,34 @@
    */
   public List<Long> longTimeNoLogin(int daysNum, List<Long> list);
   /**
    * 根据电话号码、邀请码获取邀请用户
    * @param phone
    * @param inviteCode
    * @return
    */
   public UserInfo getInfoByPhoneOrInviteCode(String phone, String inviteCode);
   /**
    * 根据电话号码 获取有效用户
    * @param phone
    * @return
    */
   public UserInfo getEffectiveUserInfoByPhone(String phone);
   /**
    * 获取用户信息
    * @param uid
    * @return
    * @throws UserInfoException
    */
   public UserInfo getUserInfo(Long uid) throws UserInfoException;
   /**
    * 根据微信获取有效用户
    * @param unionId
    * @return
    */
   public UserInfo getEffectiveUserInfoByWXUnionId(String unionId);
}