package com.ots.project.exam.service; import com.github.pagehelper.PageInfo; import com.ots.project.exam.domain.Subject; import com.ots.project.exam.viewmodel.SubjectPageRequestVM; import java.util.List; public interface SubjectService extends BaseService { List getSubjectByLevel(Integer level); List allSubject(); Integer levelBySubjectId(Integer id); PageInfo page(SubjectPageRequestVM requestVM); }