package com.matrix.system.hive.service;
|
|
import java.util.List;
|
|
|
import com.matrix.core.pojo.PaginationVO;
|
import com.matrix.system.hive.bean.SysAllotDetail;
|
import com.matrix.system.hive.plugin.util.BaseServices;
|
|
|
/**
|
*
|
* @date 2016-07-18 18:11
|
*/
|
public interface SysAllotDetailService extends BaseServices<SysAllotDetail> {
|
|
/**
|
* 新增SysAllotDetail
|
*
|
*/
|
public int add(SysAllotDetail sysAllotDetail);
|
|
/**
|
* 更新SysAllotDetail
|
*
|
*/
|
public int modify(SysAllotDetail sysAllotDetail);
|
|
/**
|
* 批量删除SysAllotDetail
|
*
|
*/
|
public int remove(List<Long> list);
|
|
/**
|
* 根据id删除SysAllotDetail
|
*
|
*/
|
public int removeById(Long id);
|
|
/**
|
* 分页查询SysAllotDetail
|
*
|
*/
|
public List<SysAllotDetail> findInPage(SysAllotDetail sysAllotDetail, PaginationVO pageVo);
|
|
/**
|
* 根据对象查询SysAllotDetail
|
*
|
*/
|
public List<SysAllotDetail> findByModel(SysAllotDetail sysAllotDetail);
|
|
/**
|
* 统计记录SysAllotDetail
|
*
|
*/
|
public int findTotal(SysAllotDetail sysAllotDetail);
|
|
/**
|
* 根据id查询SysAllotDetail
|
*
|
*/
|
public SysAllotDetail findById(Long id);
|
|
|
|
|
}
|