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