ILotFansService.java 648 B

1234567891011121314151617181920212223242526
  1. package cn.hobbystocks.auc.service;
  2. import cn.hobbystocks.auc.domain.LotFans;
  3. import cn.hobbystocks.auc.vo.FansVO;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import java.util.List;
  6. public interface ILotFansService extends IService<LotFans> {
  7. public LotFans selectLotFansById(Long id);
  8. public List<LotFans> selectLotFansList(LotFans lotFans);
  9. public int insertLotFans(LotFans lotFans);
  10. public int updateLotFans(LotFans lotFans);
  11. public int deleteLotFansById(Long id);
  12. void fans(FansVO fansVO);
  13. int updateLotFansDel(Long id);
  14. LotFans selectLotFansByLotIdAndType(Long lotId, String type);
  15. }