12 lines
344 B
Java
12 lines
344 B
Java
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);
|
|
}
|