📄 coursedao.java
字号:
package com.stuman.dao;
import java.sql.SQLException;
import java.util.List;
import com.stuman.domain.Course;
public interface CourseDAO {
List getCourse();
List getCourseForStu(String stuid) throws SQLException;
boolean deleteCourseByID(String id);
boolean updateCourse(Course cour);
boolean saveCourse(Course cour);
Course getCourseByID(String id);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -