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

📄 salchancedao.java

📁 做的是一个客户关系管理系统
💻 JAVA
字号:
package com.accp.dao;

import java.util.Date;
import java.util.List;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.LockMode;
import org.springframework.context.ApplicationContext;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

/**
 * Data access object (DAO) for domain model class SalChance.
 * 
 * @see com.accp.dao.SalChance
 * @author MyEclipse Persistence Tools
 */

public class SalChanceDAO extends HibernateDaoSupport {
	private static final Log log = LogFactory.getLog(SalChanceDAO.class);

	// property constants
	public static final String CHC_SOURCE = "chcSource";

	public static final String CHC_CUST_NAME = "chcCustName";

	public static final String CHC_TITLE = "chcTitle";

	public static final String CHC_RATE = "chcRate";

	public static final String CHC_LINKMAN = "chcLinkman";

	public static final String CHC_TEL = "chcTel";

	public static final String CHC_DESC = "chcDesc";

	public static final String CHC_CREATE_ID = "chcCreateId";

	public static final String CHC_CREATE_BY = "chcCreateBy";

	public static final String CHC_DUE_ID = "chcDueId";

	public static final String CHC_DUE_TO = "chcDueTo";

	public static final String CHC_STATUS = "chcStatus";

	protected void initDao() {
		// do nothing
	}

	public void save(SalChance transientInstance) {
		log.debug("saving SalChance instance");
		try {
			getHibernateTemplate().save(transientInstance);
			log.debug("save successful");
		} catch (RuntimeException re) {
			log.error("save failed", re);
			throw re;
		}
	}

	public void delete(SalChance persistentInstance) {
		log.debug("deleting SalChance instance");
		try {
			getHibernateTemplate().delete(persistentInstance);
			log.debug("delete successful");
		} catch (RuntimeException re) {
			log.error("delete failed", re);
			throw re;
		}
	}

	public SalChance findById(java.lang.Long id) {
		log.debug("getting SalChance instance with id: " + id);
		try {
			SalChance instance = (SalChance) getHibernateTemplate().get(
					"com.accp.dao.SalChance", id);
			return instance;
		} catch (RuntimeException re) {
			log.error("get failed", re);
			throw re;
		}
	}

	public List findByExample(SalChance instance) {
		log.debug("finding SalChance instance by example");
		try {
			List results = getHibernateTemplate().findByExample(instance);
			log.debug("find by example successful, result size: "
					+ results.size());
			return results;
		} catch (RuntimeException re) {
			log.error("find by example failed", re);
			throw re;
		}
	}

	public List findByProperty(String propertyName, Object value) {
		log.debug("finding SalChance instance with property: " + propertyName
				+ ", value: " + value);
		try {
			String queryString = "from SalChance as model where model."
					+ propertyName + "= ?";
			return getHibernateTemplate().find(queryString, value);
		} catch (RuntimeException re) {
			log.error("find by property name failed", re);
			throw re;
		}
	}

	public List findByChcSource(Object chcSource) {
		return findByProperty(CHC_SOURCE, chcSource);
	}

	public List findByChcCustName(Object chcCustName) {
		return findByProperty(CHC_CUST_NAME, chcCustName);
	}

	public List findByChcTitle(Object chcTitle) {
		return findByProperty(CHC_TITLE, chcTitle);
	}

	public List findByChcRate(Object chcRate) {
		return findByProperty(CHC_RATE, chcRate);
	}

	public List findByChcLinkman(Object chcLinkman) {
		return findByProperty(CHC_LINKMAN, chcLinkman);
	}

	public List findByChcTel(Object chcTel) {
		return findByProperty(CHC_TEL, chcTel);
	}

	public List findByChcDesc(Object chcDesc) {
		return findByProperty(CHC_DESC, chcDesc);
	}

	public List findByChcCreateId(Object chcCreateId) {
		return findByProperty(CHC_CREATE_ID, chcCreateId);
	}

	public List findByChcCreateBy(Object chcCreateBy) {
		return findByProperty(CHC_CREATE_BY, chcCreateBy);
	}

	public List findByChcDueId(Object chcDueId) {
		return findByProperty(CHC_DUE_ID, chcDueId);
	}

	public List findByChcDueTo(Object chcDueTo) {
		return findByProperty(CHC_DUE_TO, chcDueTo);
	}

	public List findByChcStatus(Object chcStatus) {
		return findByProperty(CHC_STATUS, chcStatus);
	}

	public List findAll() {
		log.debug("finding all SalChance instances");
		try {
			String queryString = "from SalChance";
			return getHibernateTemplate().find(queryString);
		} catch (RuntimeException re) {
			log.error("find all failed", re);
			throw re;
		}
	}

	public SalChance merge(SalChance detachedInstance) {
		log.debug("merging SalChance instance");
		try {
			SalChance result = (SalChance) getHibernateTemplate().merge(
					detachedInstance);
			log.debug("merge successful");
			return result;
		} catch (RuntimeException re) {
			log.error("merge failed", re);
			throw re;
		}
	}

	public void attachDirty(SalChance instance) {
		log.debug("attaching dirty SalChance instance");
		try {
			getHibernateTemplate().saveOrUpdate(instance);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public void attachClean(SalChance instance) {
		log.debug("attaching clean SalChance instance");
		try {
			getHibernateTemplate().lock(instance, LockMode.NONE);
			log.debug("attach successful");
		} catch (RuntimeException re) {
			log.error("attach failed", re);
			throw re;
		}
	}

	public static SalChanceDAO getFromApplicationContext(ApplicationContext ctx) {
		return (SalChanceDAO) ctx.getBean("SalChanceDAO");
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -