electivedetailservice.java

来自「Spring+hibernate学生在线选课系统」· Java 代码 · 共 36 行

JAVA
36
字号
/*
 * Created on 2006-1-21
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.mmxbb.schoolelective.service;

import java.util.List;

import org.mmxbb.schoolelective.model.Electivedetail;

/**
 * @author mmx
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public interface ElectivedetailService {

	 public List getAllElectivedetail(); 
	 
	 public List getSpecElectivedetail(String query);
	 
	 public Electivedetail getElectivedetail(Integer id);
	    
	 public void updateElectivedetail(Electivedetail electivedetail);
	    
	 public void deleteElectivedetail(Integer id);
	    
	 public void createElectivedetail(Electivedetail electivedetail);
	 
	 public List getSpec(String id);
	
}

⌨️ 快捷键说明

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