package com.kwan.springbootkwan.service; import com.kwan.springbootkwan.entity.CsdnUserInfo; import com.kwan.springbootkwan.entity.resp.BusinessInfoResponse; /** * 评论 * * @author : qinyingjie * @version : 2.2.0 * @date : 2023/10/24 01:25 */ public interface CsdnCommentService { /** * 查询是否评论过 * * @return */ Boolean isComment(BusinessInfoResponse.ArticleData.Article article, CsdnUserInfo csdnUserInfo); /** * 评论别人的文章 * * @return */ Boolean comment(String articleId, CsdnUserInfo csdnUserInfo); /** * 评论自己的文章 * * @return */ void commentSelf(); }