package com.ishop.merchant;
|
|
import com.ishop.model.po.EbProductBrand;
|
|
import java.util.List;
|
|
public interface ProductBrandCache {
|
|
// List<EbProductBrand> getTree();
|
//
|
// List<EbProductBrand> getListTree();
|
|
EbProductBrand get(int id);
|
|
void save(EbProductBrand category);
|
|
void update(EbProductBrand category);
|
|
void remove(int id);
|
|
List<EbProductBrand> getList();
|
}
|