package com.mindskip.xzs.service; import com.mindskip.xzs.domain.Subject; import com.mindskip.xzs.viewmodel.admin.education.SubjectPageRequestVM; import com.github.pagehelper.PageInfo; import org.apache.ibatis.annotations.Param; import java.util.List; public interface SubjectService extends BaseService { List getSubjectByLevel(Integer level); List allSubject(); Integer levelBySubjectId(Integer id); PageInfo page(SubjectPageRequestVM requestVM); List getNames(String[] names); List selectByIds(Integer[] ids); }