You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.teaching.backend.service.thumb;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.teaching.backend.common.BaseResponse;
|
|
|
|
import com.teaching.backend.model.entity.thumb.SeResourceThumb;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author:youhang
|
|
|
|
* @Date:2024-05-30-20:22
|
|
|
|
* @Description:
|
|
|
|
*/
|
|
|
|
public interface SeResourceThumbService extends IService<SeResourceThumb> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 点赞
|
|
|
|
*
|
|
|
|
* @param userId
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
BaseResponse<Boolean> doResourceThumb(Integer resourceId, String userId);
|
|
|
|
|
|
|
|
}
|