CsdnCollectService.java 632 字节
Newer Older
1 2 3
package com.kwan.springbootkwan.service;


4
import com.kwan.springbootkwan.entity.CsdnUserInfo;
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import com.kwan.springbootkwan.entity.resp.BusinessInfoResponse;

/**
 * 收藏
 *
 * @author : qinyingjie
 * @version : 2.2.0
 * @date : 2023/10/24 01:00
 */
public interface CsdnCollectService {

    /**
     * 查询是否收藏过
     *
     * @return
     */
21
    Boolean isCollect(String articleId, CsdnUserInfo csdnUserInfo);
22 23 24 25 26 27

    /**
     * 点赞和取消点赞接口,true,点过,false,没有点过
     *
     * @return
     */
28
    Boolean collect(BusinessInfoResponse.ArticleData.Article article, CsdnUserInfo csdnUserInfo);
29
}