Package Poster1.dao;
Import java.sql.SQLException;
Import java.util.List;
Import Poster_model. TypeInfo;
Import Poster_model. Userinfo;
/**
* Interface to the function of the change of the numbers in the repository
* @author 1
*
*/
Public interface Idaobbs<t> {
/**
* @param t
* @return Add a statistic to the repository
* @throws SQLException
*/
public int AddItem (T t) throws SQLException;
/**
* @param Object
* @return Delete a single statistic from the repository
* @throws SQLException
*/
public int RemoveItem (Object object) throws SQLException;
/**
* @param t
* @return Update one of the methods
* @throws SQLException
*/
public int updateinem (T t) throws SQLException;
/**
* @param Object
* @return from the main key field and convert it into a physical image
* @throws SQLException
*/
Public T Getmodel (Object object) throws SQLException;
/**
* @param t
* @return According to a number of conditions, and converted into a corresponding set
* @throws SQLException
*/
Public list<t> getList (T t) throws SQLException;
}
interface to the function of the increment and check of the digital archives of the repository