Blame view

src/main/java/com/jevon/mapper/CourseMapper.java 495 Bytes
36ff5663   陈杰   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.jevon.mapper;

import com.jevon.model.Course;

import java.util.List;

/**
 * @author chen
 * @version 1.0
 * @date 2019/10/9 0009 9:40
 */
public interface CourseMapper {

    int insertBatch(List<Course> list);

    List<Course> selectBySchoolId(int schoolId);

54c3da43   陈杰   1
18
19
    List<Course> selectBySchoolId2(int schoolId);

36ff5663   陈杰   first
20
21
22
23
24
25
26
27
    List<Course> selectByCourse(Course course);

    int updateCourseType(Course course);

    int deleteSchoolId(int schoolId);

    int initSchoolId(int schoolId);
}