yujian
2019-09-27 c1f208bb47427f36f556e27373f72f8e6f2587a8
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);
 
}