| | |
| | | package com.yeshi.fanli.service.inter.lable;
|
| | |
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.lable.QualityFlashSale;
|
| | | import com.yeshi.fanli.exception.QualityFlashSaleException;
|
| | |
|
| | | public interface QualityFlashSaleService {
|
| | | |
| | | /**
|
| | | * 插入对象
|
| | | * @param record
|
| | | * @return
|
| | | * @throws QualityFlashSaleException
|
| | | */
|
| | | public int insertSelective(QualityFlashSale record) throws QualityFlashSaleException;
|
| | | |
| | | /**
|
| | | * 更新当前对象所有数据
|
| | | * @param record
|
| | | * @return
|
| | | * @throws QualityFlashSaleException
|
| | | */
|
| | | public int updateByPrimaryKey(QualityFlashSale record) throws QualityFlashSaleException;
|
| | | |
| | | /**
|
| | | * 选择性更新内容——不为空则更新该字段
|
| | | * @param record
|
| | | * @return
|
| | | * @throws QualityFlashSaleException
|
| | | */
|
| | | public int updateByPrimaryKeySelective(QualityFlashSale record) throws QualityFlashSaleException;
|
| | |
|
| | | /**
|
| | | * 获取对应时间段类型
|
| | | * @return
|
| | | */
|
| | | public int getNowType();
|
| | |
|
| | | /**
|
| | | * 批量插入
|
| | | * @param list
|
| | | * @return
|
| | | */
|
| | | public int insertBatch(List<QualityFlashSale> list);
|
| | | |
| | | |
| | | /**
|
| | | * 批量选择更新
|
| | | * @param list
|
| | | * @return
|
| | | */
|
| | | public int updateBatchSelective(List<QualityFlashSale> list);
|
| | | |
| | |
|
| | | /**
|
| | | * 根据精选id查询
|
| | | * @param list
|
| | | * @return
|
| | | */
|
| | | public List<QualityFlashSale> listQueryByQualityID(List<Long> list);
|
| | |
|
| | | |
| | | /**
|
| | | * 超过一定时间的抢购商品---待需删除
|
| | | * @param start
|
| | | * @param count
|
| | | * @param hour 时长
|
| | | * @return
|
| | | */
|
| | | public List<Long> queryNeedRemove(long start, int count, int hour) throws QualityFlashSaleException;
|
| | |
|
| | | |
| | | /**
|
| | | * 根据主键 批量删除
|
| | | * @param list 主键集合
|
| | | */
|
| | | public void deleteBatchByPrimaryKey(List<Long> list) throws QualityFlashSaleException;
|
| | | |
| | | |
| | | }
|
| | | package com.yeshi.fanli.service.inter.lable; |
| | | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.bus.lable.QualityFlashSale; |
| | | import com.yeshi.fanli.exception.goods.quality.QualityFlashSaleException; |
| | | |
| | | public interface QualityFlashSaleService { |
| | | |
| | | /** |
| | | * 插入对象 |
| | | * @param record |
| | | * @return |
| | | * @throws QualityFlashSaleException |
| | | */ |
| | | public int insertSelective(QualityFlashSale record) throws QualityFlashSaleException; |
| | | |
| | | /** |
| | | * 更新当前对象所有数据 |
| | | * @param record |
| | | * @return |
| | | * @throws QualityFlashSaleException |
| | | */ |
| | | public int updateByPrimaryKey(QualityFlashSale record) throws QualityFlashSaleException; |
| | | |
| | | /** |
| | | * 选择性更新内容——不为空则更新该字段 |
| | | * @param record |
| | | * @return |
| | | * @throws QualityFlashSaleException |
| | | */ |
| | | public int updateByPrimaryKeySelective(QualityFlashSale record) throws QualityFlashSaleException; |
| | | |
| | | /** |
| | | * 获取对应时间段类型 |
| | | * @return |
| | | */ |
| | | public int getNowType(); |
| | | |
| | | /** |
| | | * 批量插入 |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public int insertBatch(List<QualityFlashSale> list); |
| | | |
| | | |
| | | /** |
| | | * 批量选择更新 |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public int updateBatchSelective(List<QualityFlashSale> list); |
| | | |
| | | |
| | | /** |
| | | * 根据精选id查询 |
| | | * @param list |
| | | * @return |
| | | */ |
| | | public List<QualityFlashSale> listQueryByQualityID(List<Long> list); |
| | | |
| | | |
| | | /** |
| | | * 超过一定时间的抢购商品---待需删除 |
| | | * @param start |
| | | * @param count |
| | | * @param hour 时长 |
| | | * @return |
| | | */ |
| | | public List<Long> queryNeedRemove(long start, int count, int hour) throws QualityFlashSaleException; |
| | | |
| | | |
| | | /** |
| | | * 根据主键 批量删除 |
| | | * @param list 主键集合 |
| | | */ |
| | | public void deleteBatchByPrimaryKey(List<Long> list) throws QualityFlashSaleException; |
| | | |
| | | |
| | | } |