package cn.hobbystocks.auc.service; import cn.hobbystocks.auc.domain.LotFans; import cn.hobbystocks.auc.vo.FansVO; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; public interface ILotFansService extends IService { public LotFans selectLotFansById(Long id); public List selectLotFansList(LotFans lotFans); public int insertLotFans(LotFans lotFans); public int updateLotFans(LotFans lotFans); public int deleteLotFansById(Long id); void fans(FansVO fansVO); int updateLotFansDel(Long id); LotFans selectLotFansByLotIdAndType(Long lotId, String type); }