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