package com.kwan.springbootkwan.service; 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); /** * 点赞和取消点赞接口,true,点过,false,没有点过 * * @return */ Boolean comment(String articleId); }