package com.yeshi.fanli.service.inter.user.vip;
|
|
import com.yeshi.fanli.entity.bus.user.vip.UserVIPPreInfo;
|
import com.yeshi.fanli.exception.user.vip.UserVIPInfoException;
|
|
/**
|
* 阶段VIP用户服务
|
*
|
* @author Administrator
|
*
|
*/
|
public interface UserVIPPreInfoService {
|
|
/**
|
* 添加用户VIP阶段信息
|
*
|
* @param info
|
* @throws UserVIPInfoException
|
*/
|
public void addUserVIPPreInfo(UserVIPPreInfo info) throws UserVIPInfoException;
|
|
/**
|
* 获取最近的进度
|
*
|
* @param uid
|
* @return
|
*/
|
public UserVIPPreInfo getLatestProcessInfo(Long uid);
|
|
}
|