public interface MomentCommentService extends Service<MomentComment> { Result add(MomentComment momentComment); List<MomentComment> selectByMomentId(Long momentId); Result detail(Long momentId); Result list(MomentComment momentComment); Integer getCountByArticleId(Long id); }
时间: 2024-04-24 16:22:11 浏览: 50
Java中List<? extends T>与List<? super T>的区别(值得珍藏)
这是一个 MomentCommentService 接口,它继承了 Service 接口,并对 MomentComment 类进行了操作。其中包含了添加 MomentComment、查询某个 Moment 的所有评论、查询某个 Moment 的评论详情、查询 MomentComment 列表以及根据文章 ID 查询评论总数等方法。
阅读全文