CsdnLikeService.java 563 字节
Newer Older
1 2 3
package com.kwan.springbootkwan.service;


4 5
import com.kwan.springbootkwan.entity.CsdnUserInfo;

6 7 8 9 10 11 12 13
/**
 * 点赞
 *
 * @author : qinyingjie
 * @version : 2.2.0
 * @date : 2023/10/24 00:19
 */
public interface CsdnLikeService {
14 15 16 17 18 19 20

    /**
     * 查询是否点过赞
     * todo:还未找到接口,搁浅
     *
     * @return
     */
21
    Boolean isLike(String articleId, CsdnUserInfo csdnUserInfo);
22

23
    /**
24
     * 点赞和取消点赞接口,true,点过,false,没有点过
25 26 27
     *
     * @return
     */
28
    Boolean like(String articleId,CsdnUserInfo csdnUserInfo);
29
}