学习课程ES增加了按id删除

This commit is contained in:
daihh
2023-01-09 12:09:01 +08:00
parent 4062cb7c8e
commit e33e292fdb
4 changed files with 51 additions and 9 deletions

View File

@@ -71,4 +71,11 @@ public interface ICourseStudySearch {
* @throws Exception
*/
void removeByDocId(String id) throws Exception;
/**
* 根据学习id删除
* @param id
* @throws Exception
*/
void removeByStudyId(String id);
}