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

📄 jfdlrdao.java

📁 Struts+jdbc开发的合同管理系统,用的SQL Server 2000做为后台数据库!
💻 JAVA
字号:
/*
 * Author :Cao guangxin
 * on 26-三月-2005 at 09:54:55
 * 
 * Mail:relationinfo@hotmail.com
 * 
 * visit:www.relaioninfo.com or www.helpsoft.org
 */

package org.helpsoft.contract.dao;

import org.helpsoft.contract.dto.*;
import org.helpsoft.contract.exceptions.*;

public interface JfdlrDao
{
	/** 
	 * Inserts a new row in the jfdlr table.
	 */
	public JfdlrPk insert(Jfdlr dto) throws JfdlrDaoException;

	/** 
	 * Updates a single row in the jfdlr table.
	 */
	public void update(JfdlrPk pk, Jfdlr dto) throws JfdlrDaoException;

	/** 
	 * Deletes a single row in the jfdlr table.
	 */
	public void delete(JfdlrPk pk) throws JfdlrDaoException;

	/** 
	 * Returns the rows from the jfdlr table that matches the specified primary-key value.
	 */
	public Jfdlr findByPrimaryKey(JfdlrPk pk) throws JfdlrDaoException;

	/** 
	 * Returns all rows from the jfdlr table that match the criteria ''.
	 */
	public Jfdlr[] findAll() throws JfdlrDaoException;

	/** 
	 * Returns all rows from the jfdlr table that match the criteria 'jfdlrbm = :jfdlrbm'.
	 */
	public Jfdlr findByPrimaryKey(String jfdlrbm) throws JfdlrDaoException;

	/** 
	 * Returns all rows from the jfdlr table that match the criteria 'jfdlrbm = :jfdlrbm'.
	 */
	public Jfdlr[] findWhereJfdlrbmEquals(String jfdlrbm) throws JfdlrDaoException;

	/** 
	 * Returns all rows from the jfdlr table that match the criteria 'jfdlrxm = :jfdlrxm'.
	 */
	public Jfdlr[] findWhereJfdlrxmEquals(String jfdlrxm) throws JfdlrDaoException;

	/** 
	 * Sets the value of maxRows
	 */
	public void setMaxRows(int maxRows);

	/** 
	 * Gets the value of maxRows
	 */
	public int getMaxRows();

	/** 
	 * Returns all rows from the jfdlr table that match the specified arbitrary SQL statement
	 */
	public Jfdlr[] findByDynamicSelect(String sql, Object[] sqlParams) throws JfdlrDaoException;

	/** 
	 * Returns all rows from the jfdlr table that match the specified arbitrary SQL statement
	 */
	public Jfdlr[] findByDynamicWhere(String sql, Object[] sqlParams) throws JfdlrDaoException;

}

⌨️ 快捷键说明

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