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

📄 t_dp_tranrequ_dao.java

📁 一个javaweb开的小例子
💻 JAVA
字号:
package cn.com.pkusoft.entity.dao;

import java.util.List;
import cn.com.pkusoft.entity.*;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2004</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class T_Dp_TranRequ_Dao
	extends BaseDao
{
	public T_Dp_TranRequ_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_TranRequ_BD tranrequBd = new T_Dp_TranRequ_BD();

		StringBuffer sqlBuffer = new StringBuffer("");
		sqlBuffer.append("INSERT INTO ");
		sqlBuffer.append(T_Dp_TranRequ_BD.AGESCOPE);
		sqlBuffer.append("( ");
		sqlBuffer.append(T_Dp_TranRequ_BD.ENDSATE);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.INTERVIEWDATE);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.JOBDES);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.LANGREQU);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.MANAREQU);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.MANNUM);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.REMARK);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.REQUNUM);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.SEXREQU);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.SINGLEPRICE);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.STARTDATE);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.TECHREQU);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.TOTALPRICE);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.TRANREQU);
		sqlBuffer.append(",");
		sqlBuffer.append(T_Dp_TranRequ_BD.WORKADD);
		sqlBuffer.append(") VALUES (");
		sqlBuffer.append(tranrequBd.getAgescope());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getEndsate());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getInterviewdate());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getJobdes());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getLangrequ());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getManarequ());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getMannum());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getRemark());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getRequnum());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getSexrequ());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getSingleprice());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getStartdate());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getTechrequ());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getTotalprice());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getTranrequ());
		sqlBuffer.append(",");
		sqlBuffer.append(tranrequBd.getWorkadd());
		sqlBuffer.append(")");

		String strSql = sqlBuffer.toString();
		//delete sqlBuffer;
		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 + -