📄 roleactiondao.java
字号:
package com.wxd.common.popedom.persistence.entity.dao.iface;
import java.io.Serializable;
public interface RoleActionDAO {
public com.wxd.common.popedom.persistence.entity.RoleAction get(com.wxd.common.popedom.persistence.entity.RoleAction key);
public com.wxd.common.popedom.persistence.entity.RoleAction load(com.wxd.common.popedom.persistence.entity.RoleAction key);
public java.util.List<com.wxd.common.popedom.persistence.entity.RoleAction> findAll ();
/**
* Persist the given transient instance, first assigning a generated identifier. (Or using the current value
* of the identifier property if the assigned generator is used.)
* @param roleAction a transient instance of a persistent class
* @return the class identifier
*/
public com.wxd.common.popedom.persistence.entity.RoleAction save(com.wxd.common.popedom.persistence.entity.RoleAction roleAction);
/**
* Either save() or update() the given instance, depending upon the value of its identifier property. By default
* the instance is always saved. This behaviour may be adjusted by specifying an unsaved-value attribute of the
* identifier property mapping.
* @param roleAction a transient instance containing new or updated state
*/
public void saveOrUpdate(com.wxd.common.popedom.persistence.entity.RoleAction roleAction);
/**
* Update the persistent state associated with the given identifier. An exception is thrown if there is a persistent
* instance with the same identifier in the current session.
* @param roleAction a transient instance containing updated state
*/
public void update(com.wxd.common.popedom.persistence.entity.RoleAction roleAction);
/**
* Remove a persistent instance from the datastore. The argument may be an instance associated with the receiving
* Session or a transient instance with an identifier associated with existing persistent state.
* @param roleAction the instance to be removed
*/
public void delete(com.wxd.common.popedom.persistence.entity.RoleAction roleAction);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -