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

📄 indeptdao.java

📁 基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+struts+spring框架综合运用的系统。
💻 JAVA
字号:
package com.oa.module.office.dept;

import java.util.List;

import com.oa.util.XPage;

/**
 * 部门DAO类的接口类
 * @author czpeng
 *
 */
public interface InDeptDAO {

	public XPage getDeptlist(int currentPage, int count, Tdept info);
	
	public List getUser();
	
	public boolean addList(Tdept info);
	
	public boolean editList(Tdept info);

	public Tdept getDeptById(String did);
	
	public boolean openDept(Tdept info);
	
	public boolean closeDept(Tdept info);

	public boolean getDeptByName(String dname);

	public boolean getUserForDid(String did);
}

⌨️ 快捷键说明

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