admin
2020-03-13 cac929ffc19f63d548494745919996b78b2a7be8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
 
}