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

📄 notedao.java

📁 实现复杂份的分页功能
💻 JAVA
字号:
package com.nikoyo.ec.dao;

import java.util.List;
import java.util.Map;

import com.nikoyo.ec.vo.Note;

/**
 * @author Administrator
 *
 */
public interface  NoteDAO {
	  
	/**
	 * 
	 * 
	 * 
	 * 
	 * 
	 * @param note
	 * @return
	 * @throws Exception
	 */
	public Boolean doCreate(Note note) throws Exception;
	
	
 
	
	/**
	 * @param notes
	 * @return
	 * @throws Exception
	 */
	public int doCreateList(List notes) throws Exception;
	
	
	
	/**
	 * @param note
	 * @return
	 * @throws Exception
	 */
	public boolean doUpdate(Note note) throws Exception;
	
	/**
	 * @param notes
	 * @return
	 * @throws Exception
	 */
	public int doUpdateList(List notes) throws Exception;
	
	
	/**
	 * @param id
	 * @return
	 * @throws Exception
	 */
	public boolean doRemove(int id) throws Exception ;
	
	
	
	/**
	 * @param ids
	 * @return
	 * @throws Exception
	 */
	public int doRemoveList(String[] ids ) throws Exception;
	
	
	/**
	 * @param startRow
	 * @param endRow
	 * @param sortValueMap
	 * @param filterPropertyMap
	 * @return
	 * @throws Exception
	 */
	public List findAll(int startRow ,int endRow,Map sortValueMap,Map filterPropertyMap)  throws  Exception;
	
	

}

⌨️ 快捷键说明

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