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.favour;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
import com.teaching.backend.common.BaseResponse;
|
|
|
|
import com.teaching.backend.model.entity.favour.SeKnowFavour;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Author:youhang
|
|
|
|
* @Date:2024-05-30-20:22
|
|
|
|
* @Description:
|
|
|
|
*/
|
|
|
|
public interface SeKnowFavourService extends IService<SeKnowFavour> {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 收藏
|
|
|
|
*
|
|
|
|
* @param userId
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
BaseResponse<Boolean> doKnowFavour(String resourceId, String userId);
|
|
|
|
|
|
|
|
}
|