Commit 5fb63b01 authored by macro's avatar macro
Browse files

Update SmsHomeRecommendSubjectService.java

parent cb6c5954
......@@ -11,28 +11,28 @@ import java.util.List;
*/
public interface SmsHomeRecommendSubjectService {
/**
* 添加首页推荐
* 添加专题推荐
*/
@Transactional
int create(List<SmsHomeRecommendSubject> recommendSubjectList);
/**
* 修改推荐排序
* 修改专题推荐排序
*/
int updateSort(Long id, Integer sort);
/**
* 批量删除推荐
* 批量删除专题推荐
*/
int delete(List<Long> ids);
/**
* 批量更新推荐状态
* 批量更新专题推荐状态
*/
int updateRecommendStatus(List<Long> ids, Integer recommendStatus);
/**
* 分页查询推荐
* 分页查询专题推荐
*/
List<SmsHomeRecommendSubject> list(String subjectName, 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