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