📄 indeptdao.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 + -