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