| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.course.entity.CoursePackageStudent; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface CoursePackageStudentMapper extends BaseMapper<CoursePackageStudent> { |
| | | |
| | | List<CoursePackageStudent> queryStuDeduClassHourNums(@Param("courseId") Integer courseId, |
| | | @Param("stuId") Integer stuId, |
| | | @Param("appUserId") Integer appUserId); |
| | | |
| | | List<CoursePackageStudent> queryAppUserOfStuAttendClass(@Param("appUserId")Integer appUserId, |
| | | @Param("coursePackageIds")List<Integer> coursePackageIds); |
| | | |
| | | } |