admin
2019-10-21 520dd4bec679e5febb3986f4bcdd0c9bf29a0542
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yeshi.fanli.service.inter.user;
 
import com.yeshi.fanli.entity.bus.user.UserAccountBindingHistory;
 
public interface UserAccountBindingHistoryService {
 
    /**
     * 添加绑定
     * 
     * @param history
     */
    public void addUserAccountBindingHistory(UserAccountBindingHistory history);
 
    /**
     * 获取最近一次的绑定记录
     * 
     * @param uid
     * @param type
     * @return
     */
    public UserAccountBindingHistory getLatestHistory(Long uid, int type);
 
}