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
543 B
23 lines
543 B
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.SeKnowThumb; |
|
|
|
/** |
|
* @Author:youhang |
|
* @Date:2024-05-30-20:22 |
|
* @Description: |
|
*/ |
|
public interface SeKnowThumbService extends IService<SeKnowThumb> { |
|
|
|
/** |
|
* 点赞 |
|
* |
|
* @param courseId |
|
* @param userId |
|
* @return |
|
*/ |
|
BaseResponse<Boolean> doKnowThumb(String courseId, String resourceId, String userId); |
|
|
|
}
|
|
|