?? rightsdao.java
字號(hào):
package com.yuanchung.sales.dao.admin;
import java.util.List;
import com.yuanchung.sales.exception.SystemException;
import com.yuanchung.sales.model.admin.Rights;
import com.yuanchung.sales.model.admin.position.PositionRights;
/**
* A data access object (DAO) providing persistence and search support for
* Rights 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.Rights
* @author MyEclipse Persistence Tools
*/
public interface RightsDAO{
public void save(Rights transientInstance) throws SystemException;
public void delete(Rights persistentInstance) throws SystemException;
public Rights findById(java.lang.Integer id) throws SystemException;
public List findByExample(Rights instance) throws SystemException;
public List findByProperty(String propertyName, Object value) throws SystemException;
public List findByRightsName(Object rightsName) throws SystemException;
public List findByParentId(Object parentId) throws SystemException;
public List findAll() throws SystemException;
public Rights merge(Rights detachedInstance) throws SystemException;
public void attachDirty(Rights instance) throws SystemException;
public void attachClean(Rights instance) throws SystemException;
public List findByIds(List idList);
public List findByProperty(String propertyName,Object value,String where);
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -