admin
2020-04-08 4e7d423e48139727ec7177855f5c4949530b8817
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);
 
}