mirror of
https://github.com/macrozheng/mall.git
synced 2025-06-27 04:20:01 +00:00
Update SmsHomeRecommendSubjectService.java
This commit is contained in:
parent
cb6c595484
commit
5fb63b01de
@ -11,28 +11,28 @@ import java.util.List;
|
|||||||
*/
|
*/
|
||||||
public interface SmsHomeRecommendSubjectService {
|
public interface SmsHomeRecommendSubjectService {
|
||||||
/**
|
/**
|
||||||
* 添加首页推荐
|
* 添加专题推荐
|
||||||
*/
|
*/
|
||||||
@Transactional
|
@Transactional
|
||||||
int create(List<SmsHomeRecommendSubject> recommendSubjectList);
|
int create(List<SmsHomeRecommendSubject> recommendSubjectList);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改推荐排序
|
* 修改专题推荐排序
|
||||||
*/
|
*/
|
||||||
int updateSort(Long id, Integer sort);
|
int updateSort(Long id, Integer sort);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除推荐
|
* 批量删除专题推荐
|
||||||
*/
|
*/
|
||||||
int delete(List<Long> ids);
|
int delete(List<Long> ids);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量更新推荐状态
|
* 批量更新专题推荐状态
|
||||||
*/
|
*/
|
||||||
int updateRecommendStatus(List<Long> ids, Integer recommendStatus);
|
int updateRecommendStatus(List<Long> ids, Integer recommendStatus);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页查询推荐
|
* 分页查询专题推荐
|
||||||
*/
|
*/
|
||||||
List<SmsHomeRecommendSubject> list(String subjectName, Integer recommendStatus, Integer pageSize, Integer pageNum);
|
List<SmsHomeRecommendSubject> list(String subjectName, Integer recommendStatus, Integer pageSize, Integer pageNum);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user