package com.matrix.system.hive.service; import com.matrix.core.pojo.PaginationVO; import com.matrix.system.hive.bean.ArticleComment; import com.matrix.system.hive.plugin.util.BaseServices; import java.util.List; /** * * @date 2016-12-12 11:26 */ public interface ArticleCommentService extends BaseServices { /** * 新增ArticleComment * */ public int add(ArticleComment articleComment); /** * 更新ArticleComment * */ public int modify(ArticleComment articleComment); /** * 批量删除ArticleComment * */ public int remove(List list); /** * 根据id删除ArticleComment * */ public int removeById(Long id); /** * 根据对象删除ArticleComment * */ public int removeByModel(ArticleComment articleComment); /** * 分页查询ArticleComment * */ public List findInPage(ArticleComment articleComment, PaginationVO pageVo); /** * 根据对象查询ArticleComment * */ public List findByModel(ArticleComment articleComment); /** * 统计记录数ArticleComment * */ public int findTotal(ArticleComment articleComment); /** * 根据id查询ArticleComment * */ public ArticleComment findById(Long id); }