coursedao.java

来自「are are are are are are are are are are 」· Java 代码 · 共 29 行

JAVA
29
字号
/*
 * CourseDao.java
 *
 * Created on 2006年5月19日, 上午8:09
 *
 * 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 CourseDao {
    
    public Course get(Integer id) throws DataAccessException;
    public void updateOrInsert(Course course) throws RecordExistException, DataAccessException;
    public void delete(Integer id) throws DataAccessException;
    public List getByYearAndTerm(Integer year,String term) throws DataAccessException;
    public List getByYearSortTerm(Integer year) throws DataAccessException;
    public List getByYearAndTermAndTeacherId(Integer year,String term,Integer teacherId) throws DataAccessException;
    public List getByClassIdAndYearAndTerm(Integer classId,Integer year,String term) throws DataAccessException;
}

⌨️ 快捷键说明

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