package com.yeshi.fanli.service.inter.tlj;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.tlj.UserTaoLiJinGiveRecord;
|
|
public interface UserTaoLiJinGiveRecordService {
|
|
public void insertSelective(UserTaoLiJinGiveRecord record);
|
|
|
public UserTaoLiJinGiveRecord selectByPrimaryKey(Long id);
|
|
|
public void updateByPrimaryKeySelective(UserTaoLiJinGiveRecord record);
|
|
|
/**
|
* 查询过期未领取的红包
|
* @param count
|
* @return
|
*/
|
public List<UserTaoLiJinGiveRecord> overdueList(int count);
|
|
}
|
|