admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/service/inter/tlj/UserTaoLiJinGiveRecordService.java
@@ -1,16 +1,26 @@
package com.yeshi.fanli.service.inter.tlj;
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);
}
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);
}