package com.ishop.merchant;
|
|
import com.ishop.model.po.EbMerchantCategory;
|
|
import java.util.List;
|
|
/**
|
* 商户分类(服装、食品等)缓存定义。
|
* @author 时克英
|
* @date 2023-06-06
|
*/
|
public interface MerCategoryCacheProvider {
|
|
List<EbMerchantCategory> getList();
|
|
EbMerchantCategory get(int id);
|
|
void save(EbMerchantCategory category);
|
|
void update(EbMerchantCategory category);
|
|
void remove(int id);
|
}
|