| | |
| | |
|
| | | import java.io.IOException;
|
| | | import java.math.BigDecimal;
|
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | 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 long getUserCount();
|
| | |
|
| | | public List<UserInfo> getUserList(int index, String key);
|
| | |
|
| | | public int getUserCount(String key);
|
| | |
|
| | | public Map<String, Integer> getnewUserByDate(int days, Date date);
|
| | |
|
| | | public Map<String, Integer> getnewUserByMonth(int months, Date date);
|
| | |
|
| | | public Map<String, Integer> getUserTotalByDate(int days, Date date);
|
| | |
|
| | | public Map<String, Integer> getUserTotalByMonth(int months, Date date);
|
| | |
|
| | | public List<UserInfo> getUserListByUid(long uid);
|
| | |
|
| | | public double getFreezeAssets(double min);
|
| | |
|
| | | public double getCanAssets(double min);
|
| | |
|
| | | public long getRandomShamUser();
|
| | |
|
| | | public boolean inviteWXUserInfo(String code, UserInfo inviter);
|
| | |
|
| | | public void unBindUserInfo(UserInfo find, int type);
|
| | |
|
| | | public void addMoney(UserInfo userInfo, BigDecimal money);
|
| | |
|
| | | public List<UserInfo> findFriends(long id, int type);
|
| | |
|
| | | public List<InviteUser> getFriendsList(long id, int type, int page, int pageSize);
|
| | |
|
| | | public long getFriendsListCount(long id, int type);
|
| | |
|
| | | public int findFriendsCount(long id, int type);
|
| | |
|
| | | public boolean createUser(UserInfo form, String appid);
|
| | |
|
| | |
| | | */
|
| | | public void saveUserInfo(String nickName, Long uid) throws UserInfoException;
|
| | |
|
| | | |
| | | /**
|
| | | * 封禁用户
|
| | | * |
| | | * @param uid
|
| | | * 获取可提现用户列表
|
| | | * @param page
|
| | | * @param count
|
| | | */
|
| | | public void forbiddenUser(Long uid,String reason);
|
| | | public List<UserInfo> getAutoExtractUser(int page, int count, BigDecimal minSurplus, String beganDate,String endDate);
|
| | |
|
| | | }
|