📄 t_dp_suppjob_dao.java
字号:
package cn.com.pkusoft.entity.dao;
import java.util.List;
import cn.com.pkusoft.entity.*;
public class T_Dp_SuppJob_Dao
extends BaseDao
{
public T_Dp_SuppJob_Dao()
{
}
public List select(String strFilter) throws java.sql.SQLException
{
/**@todo Implement this cn.com.pkusoft.entity.dao.BaseDao abstract method*/
throw new java.lang.UnsupportedOperationException("Method select() not yet implemented.");
}
public int update(BaseEntityData bd) throws java.sql.SQLException
{
/**@todo Implement this cn.com.pkusoft.entity.dao.BaseDao abstract method*/
throw new java.lang.UnsupportedOperationException("Method update() not yet implemented.");
}
public int insert(BaseEntityData bd) throws java.sql.SQLException
{
T_Dp_SuppJob_BD suppjobBd = new T_Dp_SuppJob_BD();
StringBuffer strBuff = new StringBuffer();
StringBuffer sqlBuffer = new StringBuffer("");
sqlBuffer.append("INSERT INTO ");
sqlBuffer.append(T_Dp_SuppJob_BD.TABLE_NAME);
sqlBuffer.append("( ");
sqlBuffer.append(T_Dp_SuppJob_BD.JOBADD);
sqlBuffer.append(",");
sqlBuffer.append(T_Dp_SuppJob_BD.JOBDES);
sqlBuffer.append(",");
sqlBuffer.append(T_Dp_SuppJob_BD.JOBNEED);
sqlBuffer.append(",");
sqlBuffer.append(T_Dp_SuppJob_BD.REGICOMPNUM);
sqlBuffer.append(",");
sqlBuffer.append(T_Dp_SuppJob_BD.REMARK);
sqlBuffer.append(",");
sqlBuffer.append(T_Dp_SuppJob_BD.SUPPJOB);
sqlBuffer.append(",");
sqlBuffer.append(T_Dp_SuppJob_BD.SUPPJOBAMOUNT);
sqlBuffer.append(") VALUES (");
sqlBuffer.append(suppjobBd.getJobadd());
sqlBuffer.append(",");
sqlBuffer.append(suppjobBd.getJobdes());
sqlBuffer.append(",");
sqlBuffer.append(suppjobBd.getJobneed());
sqlBuffer.append(",");
sqlBuffer.append(suppjobBd.getRegicompnum());
sqlBuffer.append(",");
sqlBuffer.append(suppjobBd.getRemark());
sqlBuffer.append(",");
sqlBuffer.append(suppjobBd.getSuppjob());
sqlBuffer.append(",");
sqlBuffer.append(suppjobBd.getSuppjobamount());
sqlBuffer.append(")");
String strSql = strBuff.toString();
int nReturn = this.execute(strSql);
return nReturn;
}
protected String getSequenceName() throws java.sql.SQLException
{
/**@todo Implement this cn.com.pkusoft.entity.dao.BaseDao abstract method*/
throw new java.lang.UnsupportedOperationException("Method getSequenceName() not yet implemented.");
}
public int delete(BaseEntityData bd) throws java.sql.SQLException
{
/**@todo Implement this cn.com.pkusoft.entity.dao.BaseDao abstract method*/
throw new java.lang.UnsupportedOperationException("Method delete() not yet implemented.");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -