📄 qualityfollowdao.java
字号:
/**
*
*/
package edu.yinhe.mis.model;
import java.sql.Connection;
import java.sql.SQLException;
import edu.yinhe.system.model.IBaseDAO;
/**
* @author Administrator
*
*/
public class QualityfollowDAO implements IBaseDAO {
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#delete(java.lang.Object)
*/
public Object delete(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#find()
*/
public Object find() throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#find(java.lang.Object)
*/
public Object find(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#findAll()
*/
public Object findAll() throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#findAll(java.lang.Object)
*/
public Object findAll(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#findById(java.lang.Object)
*/
public Object findById(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#findByObject(java.lang.Object)
*/
public Object findByObject(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#getCount(java.lang.Object)
*/
public int getCount(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return 0;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#getMaxId(java.lang.Object)
*/
public Object getMaxId(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#insert(java.lang.Object)
*/
public Object insert(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#setConnection(java.sql.Connection)
*/
public void setConnection(Connection arg0) {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see edu.yinhe.system.model.IBaseDAO#update(java.lang.Object)
*/
public Object update(Object arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -