IDeptService.java
上传用户:ouhalaa
上传日期:2016-03-17
资源大小:10210k
文件大小:1k
源码类别:

Web服务器

开发平台:

Java

  1. package com.lhq.prj.bms.service;
  2. import java.util.List;
  3. import com.lhq.prj.bms.core.Page;
  4. import com.lhq.prj.bms.po.Dept;
  5. /**    
  6.  * IDeptService.java Create on 2008-9-16 下午10:38:57   
  7.  *
  8.  * 
  9.  *
  10.  * Copyright (c) 2008 by MTA.
  11.  *
  12.  * @author 廖瀚卿
  13.  * @version 1.0  
  14.  */
  15. public interface IDeptService {
  16. /**
  17.  * 添加部门
  18.  * @param dept
  19.  * @return
  20.  */
  21. Object saveDept(Dept dept);
  22. /**
  23.  * 查找所有部门
  24.  * @return
  25.  */
  26. List findAll();
  27. /**
  28.  * 分页查找
  29.  * @param page 分页对象
  30.  * @return
  31.  */
  32. Page findByPage(Page page);
  33. /**
  34.  * 修改部门信息
  35.  * @param dept
  36.  * @return
  37.  * @throws Exception 
  38.  */
  39. boolean updateDept(Dept dept) throws Exception;
  40. /**
  41.  * 删除部门
  42.  * 
  43.  * @param deptId
  44.  * @return
  45.  */
  46. boolean deleteDept(Integer deptId);
  47. /**
  48.  * 根据公司查找所有部门
  49.  *
  50.  * @param page
  51.  * @return
  52.  */
  53. Page findDeptByCompany(Page page);
  54. }
  55.