?? complaintdao.java
字號:
package com.yuanchung.sales.dao.service;
import java.util.Date;
import java.util.List;
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;
import com.yuanchung.sales.model.service.Complaint;
/**
* A data access object (DAO) providing persistence and search support for
* Complaint entities. Transaction control of the save(), update() and delete()
* operations can directly support Spring container-managed transactions or they
* can be augmented to handle user-managed Spring transactions. Each of these
* methods provides additional information for how to configure it for the
* desired type of transaction control.
*
* @see com.yuanchung.sales.hibernate.Complaint
* @author MyEclipse Persistence Tools
*/
public interface ComplaintDAO{
public void save(Complaint transientInstance) ;
public void delete(Complaint persistentInstance) ;
public Complaint findById(java.lang.Integer id) ;
public List findByExample(Complaint instance) ;
public List findByProperty(String propertyName, Object value) ;
public List findByContent(Object content) ;
public List findByWay(Object way) ;
public List findByState(Object state) ;
public List findAll() ;
public Complaint merge(Complaint detachedInstance);
public void attachDirty(Complaint instance) ;
public void attachClean(Complaint instance) ;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -