Compare commits
5 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
3e70a64276 | 8 months ago |
|
|
b3d4308c21 | 8 months ago |
|
|
8f74deea6d | 8 months ago |
|
|
26fa68f02f | 8 months ago |
|
|
ca429afcdb | 8 months ago |
@ -0,0 +1,9 @@
|
||||
package com.zsz.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.zsz.pojo.Clazz;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface ClazzMapper extends BaseMapper<Clazz> {
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
package com.zsz.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.zsz.pojo.Grade;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface GradeMapper extends BaseMapper<Grade> {
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
package com.zsz.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.zsz.pojo.Student;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface StudentMapper extends BaseMapper<Student> {
|
||||
}
|
||||
@ -0,0 +1,9 @@
|
||||
package com.zsz.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.zsz.pojo.Teacher;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface TeacherMapper extends BaseMapper<Teacher> {
|
||||
}
|
||||
Loading…
Reference in new issue