| | |
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBriefRecord;
|
| | |
|
| | | public interface TaoBaoGoodsBriefRecordService {
|
| | | |
| | | public int deleteByPrimaryKey(Long id);
|
| | |
|
| | | public int insert(TaoBaoGoodsBriefRecord record);
|
| | |
|
| | | public int insertSelective(TaoBaoGoodsBriefRecord record);
|
| | |
|
| | | public TaoBaoGoodsBriefRecord selectByPrimaryKey(Long id);
|
| | |
|
| | | public int updateByPrimaryKeySelective(TaoBaoGoodsBriefRecord record);
|
| | |
|
| | | public int updateByPrimaryKey(TaoBaoGoodsBriefRecord record);
|
| | |
|
| | |
|
| | | /**
|
| | | * 批量插入数据库
|
| | |
| | | */
|
| | | public void insertBatch(List<TaoBaoGoodsBrief> list);
|
| | |
|
| | | |
| | | /**
|
| | | * 根据auctionId查询淘宝信息
|
| | | * @param record
|
| | | * 清理表数据
|
| | | * @return
|
| | | */
|
| | | public List<TaoBaoGoodsBrief> queryByAuctionId(Long auctionId);
|
| | | public int deleteAllData();
|
| | |
|
| | | }
|