?? dataareaschemedao.java
字號:
package com.yuanchung.sales.dao.admin;
import java.util.List;
import com.yuanchung.sales.model.admin.DataAreaScheme;
/**
* A data access object (DAO) providing persistence and search support for
* DataAreaScheme 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.model.admin.DataAreaScheme
* @author MyEclipse Persistence Tools
*/
public interface DataAreaSchemeDAO {
public void save(DataAreaScheme transientInstance);
public void delete(DataAreaScheme persistentInstance);
public DataAreaScheme findById(java.lang.Integer id);
public List findByExample(DataAreaScheme instance);
public List findByProperty(String propertyName, Object value);
public List findBySchemeName(Object schemeName);
public List findByTreeviewIds(Object treeviewIds);
public List findByRemark(Object remark);
public List findAll();
public DataAreaScheme merge(DataAreaScheme detachedInstance);
public void attachDirty(DataAreaScheme instance);
public void attachClean(DataAreaScheme instance);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -