Commit cb6c5954 authored by macro's avatar macro
Browse files

Update SmsHomeRecommendProductService.java

parent 91765044
......@@ -11,28 +11,28 @@ import java.util.List;
*/
public interface SmsHomeRecommendProductService {
/**
* 添加首页推荐
* 添加人气推荐
*/
@Transactional
int create(List<SmsHomeRecommendProduct> homeRecommendProductList);
/**
* 修改推荐排序
* 修改人气推荐排序
*/
int updateSort(Long id, Integer sort);
/**
* 批量删除推荐
* 批量删除人气推荐
*/
int delete(List<Long> ids);
/**
* 批量更新推荐状态
* 批量更新人气推荐状态
*/
int updateRecommendStatus(List<Long> ids, Integer recommendStatus);
/**
* 分页查询推荐
* 分页查询人气推荐
*/
List<SmsHomeRecommendProduct> list(String productName, Integer recommendStatus, Integer pageSize, Integer pageNum);
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment