electiveinfodao.java

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

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

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 ElectiveinfoDao {
	public Electiveinfo load(String id);
    
    public void save(Electiveinfo electiveinfo);
    
    public void update(Electiveinfo electiveinfo);
    
    public void delete(String id);
    
    public List find(String query);
    
    public List findAll();
    
  
    
     
}

⌨️ 快捷键说明

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