ILoanLogService.java
资源名称:ssh+ext.rar [点击查看]
上传用户:ouhalaa
上传日期:2016-03-17
资源大小:10210k
文件大小:1k
源码类别:
Web服务器
开发平台:
Java
- /*
- * @(#)ILoanLogService.java 2008-10-11
- *
- * Copyright LHQ. All rights reserved.
- */
- package com.lhq.prj.bms.service;
- import com.lhq.prj.bms.core.Page;
- import com.lhq.prj.bms.po.LoanLog;
- /**
- * Create on 2008-10-11 下午07:08:18
- *
- * 图书借出还书记录业务层接口
- *
- * @author 廖瀚卿
- * @version
- */
- public interface ILoanLogService {
- /**
- * 添加记录
- *
- * @param loanlog
- * @return
- * @throws Exception
- */
- Object saveLoanLog(LoanLog loanlog) throws Exception;
- /**
- * 分页查找
- * @param page 分页对象
- * @return
- */
- Page findByPage(Page page);
- /**
- * 修改记录信息
- *
- * @param loanlog
- * @return
- * @throws Exception
- */
- boolean updateLoanLog(LoanLog loanlog) throws Exception;
- /**
- * 删除记录
- *
- * @param logId
- * @return
- */
- boolean deleteLoanLog(Integer logId);
- }