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