1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.ishop.merchant;
|
| import com.ishop.model.po.EbMerchant;
|
| /**
| * 商户缓存定义。
| * @author 时克英
| * @date 2023-06-11
| */
| public interface MerchantCache {
|
| EbMerchant get(int id);
|
| void save(EbMerchant category);
|
| void update(EbMerchant category);
|
| void remove(int id);
|
| // List<EbMerchant> getList();
| }
|
|