package com.landy.gum.base.service;
|
|
import java.util.Collection;
|
import java.util.List;
|
|
import com.landy.framework.core.service.BaseManager;
|
import com.landy.gum.base.model.BbWarehouseModel;
|
|
public interface BbWarehouseManager extends BaseManager {
|
|
BbWarehouseModel get(String id);
|
|
List<BbWarehouseModel> getAll();
|
|
List<BbWarehouseModel> findByExample(BbWarehouseModel example);
|
|
BbWarehouseModel save(BbWarehouseModel model);
|
|
List<BbWarehouseModel> saveAll(Collection<BbWarehouseModel> models);
|
|
void remove(BbWarehouseModel model);
|
|
void removeAll(Collection<BbWarehouseModel> models);
|
|
void removeByPk(String id);
|
|
void removeAllByPk(Collection<String> ids);
|
|
}
|