This commit is contained in:
wangjinlei
2024-04-11 11:14:52 +08:00
parent b705aec11d
commit e9064b617d
15 changed files with 63 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
package com.peanut.modules.sociology.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.modules.common.entity.CourseSociologyEntity;
import java.util.List;
public interface CourseSociologyService extends IService<CourseSociologyEntity> {
List<CourseSociologyEntity> getSociologyLabels(Integer id);
}