| 1234567891011121314151617181920212223242526 |
- 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<LotFans> {
- public LotFans selectLotFansById(Long id);
- public List<LotFans> 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);
- }
|