📄 dtpropertiesdao.java
字号:
/*
* This source file was generated by FireStorm/DAO 3.0 (build 99)
* on 26-十月-2005 at 09:50:56
*
* If you purchase a full license for FireStorm/DAO you can customize this file header.
*
* For more information please visit http://www.codefutures.com/products/firestorm
*/
package cn.wanfeng.myblog.dao;
import cn.wanfeng.myblog.dto.*;
import cn.wanfeng.myblog.exceptions.*;
import java.sql.CallableStatement;
public interface DtpropertiesDao
{
/**
* Inserts a new row in the dtproperties table.
*/
public DtpropertiesPk insert(Dtproperties dto) throws DtpropertiesDaoException;
/**
* Updates a single row in the dtproperties table.
*/
public void update(DtpropertiesPk pk, Dtproperties dto) throws DtpropertiesDaoException;
/**
* Deletes a single row in the dtproperties table.
*/
public void delete(DtpropertiesPk pk) throws DtpropertiesDaoException;
/**
* Returns the rows from the dtproperties table that matches the specified primary-key value.
*/
public Dtproperties findByPrimaryKey(DtpropertiesPk pk) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria ''.
*/
public Dtproperties[] findAll() throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'id = :id AND property = :property'.
*/
public Dtproperties findByPrimaryKey(int id, String property) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'id = :id'.
*/
public Dtproperties[] findWhereIdEquals(int id) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'objectid = :objectid'.
*/
public Dtproperties[] findWhereObjectidEquals(int objectid) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'property = :property'.
*/
public Dtproperties[] findWherePropertyEquals(String property) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'value = :value'.
*/
public Dtproperties[] findWhereValueEquals(String value) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'uvalue = :uvalue'.
*/
public Dtproperties[] findWhereUvalueEquals(String uvalue) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'lvalue = :lvalue'.
*/
public Dtproperties[] findWhereLvalueEquals(byte[] lvalue) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the criteria 'version = :version'.
*/
public Dtproperties[] findWhereVersionEquals(int version) throws DtpropertiesDaoException;
/**
* Sets the value of maxRows
*/
public void setMaxRows(int maxRows);
/**
* Gets the value of maxRows
*/
public int getMaxRows();
/**
* Returns all rows from the dtproperties table that match the specified arbitrary SQL statement
*/
public Dtproperties[] findByDynamicSelect(String sql, Object[] sqlParams) throws DtpropertiesDaoException;
/**
* Returns all rows from the dtproperties table that match the specified arbitrary SQL statement
*/
public Dtproperties[] findByDynamicWhere(String sql, Object[] sqlParams) throws DtpropertiesDaoException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -