ICompanyDao.java
资源名称:ssh+ext.rar [点击查看]
上传用户:ouhalaa
上传日期:2016-03-17
资源大小:10210k
文件大小:1k
源码类别:
Web服务器
开发平台:
Java
- package com.lhq.prj.bms.dao;
- import java.util.List;
- import com.lhq.prj.bms.core.Page;
- import com.lhq.prj.bms.po.Company;
- public interface ICompanyDao {
- /**
- * 保存一个公司实体到数据库
- *
- * @param company
- * 公司实体
- * @return 主键id
- */
- public Object saveCompany(Company company);
- /**
- * 查找所有分公司
- * @return
- */
- public List findAll();
- /**
- * 分页查找
- * @param page 条件
- * @return
- */
- public List findByPage(Page page);
- /**
- * 分页查找的总记录
- * @param page 条件
- * @return
- */
- public int findByCount(Page page);
- /**
- * 修改公司信息
- * @param c
- * @return
- * @throws Exception
- */
- public Integer update(Company c) throws Exception;
- /**
- * 根据id删除分公司
- *
- * @param companyId
- * @return
- */
- public Integer deleteById(Integer companyId);
- }