yujian
2020-06-12 8a54915d3c39d9d8d7e90c0971d1e19d0eb76622
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);
 
}