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<Subject> {
|
List<Subject> getSubjectByLevel(Integer level);
|
List<Subject> allSubject();
|
Integer levelBySubjectId(Integer id);
|
PageInfo<Subject> page(SubjectPageRequestVM requestVM);
|
}
|