InDeptDAO.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.office.dept;
  2. import java.util.List;
  3. import com.oa.util.XPage;
  4. /**
  5.  * 部门DAO类的接口类
  6.  * @author czpeng
  7.  *
  8.  */
  9. public interface InDeptDAO {
  10. public XPage getDeptlist(int currentPage, int count, Tdept info);
  11. public List getUser();
  12. public boolean addList(Tdept info);
  13. public boolean editList(Tdept info);
  14. public Tdept getDeptById(String did);
  15. public boolean openDept(Tdept info);
  16. public boolean closeDept(Tdept info);
  17. public boolean getDeptByName(String dname);
  18. public boolean getUserForDid(String did);
  19. }