⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 classcoursedao.java

📁 are are are are are are are are are are are are
💻 JAVA
字号:
/*
 * ClassCourseDao.java
 *
 * Created on 2006年5月19日, 上午8:13
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package enova.dao;

import java.util.List;
import enova.pojo.*;

/**
 *
 * @author vlinux
 */
public interface ClassCourseDao {
    
    public ClassCourse get(Integer classId,Integer courseId) throws DataAccessException;
    public void create(ClassCourse cc) throws RecordExistException, DataAccessException;
    public void delete(Integer classId,Integer courseId) throws DataAccessException;
    public List getByClassIdAndYearAndTerm(Integer classId,Integer year,String term) throws DataAccessException;
    public List getBySpecialIdAndYearAndTermSortClassId(Integer specialId,Integer year,String term) throws DataAccessException;
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -