yujian
2019-09-10 65460a2dc7c69d8c0e031ec4c89e25d47e5173f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yeshi.fanli.service.inter.taobao;
 
import com.yeshi.fanli.entity.taobao.UserTLJBuyHistory;
 
/**
 * 淘礼金购买记录
 * 
 * @author Administrator
 *
 *
 */
public interface UserTLJBuyHistoryService {
 
    public boolean canBuy(Long uid, Long auctionId);
 
    public void addHistory(UserTLJBuyHistory history) throws Exception;
 
}