⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iactiondao.java

📁 很全面的hrm管理。提供通用的企业人力资源管理。
💻 JAVA
字号:
package org.self.hrm.persistence;

// Generated Aug 1, 2007 2:56:46 PM by Hibernate Tools 3.2.0.b9

import java.util.List;

import org.self.hrm.model.Action;

/**
 * SysUser generated by hbm2java
 */
public interface IActionDAO {
	// 新增
	public void add(Action action);

	// 批量新增
	public void add(List<Action> actions);

	// 删除
	public void delete(Action action);
	
	// 批量删除
	public void delete(List<Action> actions);
	
	//
	public void delete(String[] ids);
	
	// 修改
	public void update(Action action);

	// 批量修改
	public void update(List<Action> actions);

	// 自动检测
	public void saveOrupdate(Action action);
	
	// 批量自动检测
	public void saveOrupdate(List<Action> actions);

	// 通过代号查询
	public Action findById(String id);
	
	//得到所有列表
	public List<Action> list();
	
	// 通过属性查询
	public List<Action> findByPropery(String propertyName, Object value);

	// 通过Bean实例查询
	public List<Action> findByExample(Action action);
	
	//
	public List<Action> findByQL(String ql);
	//

	public List<Action> getPageAllowed(String page,String userId);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -