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