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

📄 specialservice.java

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

package enova.service;

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

/**
 *
 * @author vlinux
 */
public interface SpecialService {
    
    /*通过ID获取专业*/
    public Special get(Integer specialId) throws StoreException;
    
    /*更新或创建一个专业,如果该学院中该专业的组合已经存在,则抛出重复异常*/
    public void updateOrCreate(Special special) throws UniqueException, StoreException;
    
    /*通过ID删除专业*/
    public void delete(Integer specialId) throws NotExistException, StoreException;
    
    /*通过学院ID获取该学院所开设的所有专业*/
    public List getByDepartmentId( Integer departmentId ) throws StoreException;
    
}

⌨️ 快捷键说明

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