electiveinfoservice.java

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

JAVA
34
字号
/*
 * 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.Electiveinfo;

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

	 public List getAllElectiveinfo(); 
	 
	 public List getSpecElectiveinfo(String query);
	 
	 public Electiveinfo getElectiveinfo(String id);
	    
	 public void updateElectiveinfo(Electiveinfo electiveinfo);
	    
	 public void deleteElectiveinfo(String id);
	    
	 public void createElectiveinfo(Electiveinfo electiveinfo);
	
}

⌨️ 快捷键说明

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