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

Web服务器

开发平台:

Java

  1. package com.lhq.prj.bms.service;
  2. import com.lhq.prj.bms.core.Page;
  3. import com.lhq.prj.bms.po.Book;
  4. /**    
  5.  * IDeptService.java Create on 2008-9-16 下午10:38:57   
  6.  *
  7.  * 图书业务层接口
  8.  *
  9.  * Copyright (c) 2008 by MTA.
  10.  *
  11.  * @author 廖瀚卿
  12.  * @version 1.0  
  13.  */
  14. public interface IBookService {
  15. /**
  16.  * 添加图书
  17.  * @param book
  18.  * @return
  19.  */
  20. Object saveBook(Book book);
  21. /**
  22.  * 分页查找
  23.  * @param page 分页对象
  24.  * @return
  25.  */
  26. Page findByPage(Page page);
  27. /**
  28.  * 修改图书信息
  29.  * @param book
  30.  * @return
  31.  * @throws Exception 
  32.  */
  33. boolean updateBook(Book book) throws Exception;
  34. /**
  35.  * 删除图书
  36.  * 
  37.  * @param rootPath 上下文路径
  38.  * @param bookId
  39.  * @return
  40.  */
  41. boolean deleteBook(String rootPath,Integer bookId);
  42. /**
  43.  * 还书
  44.  *
  45.  * @param book
  46.  * @return
  47.  * @throws Exception 
  48.  */
  49. boolean returnBook(Book book) throws Exception;
  50. }
  51.