1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ishop.merchant;
|
| import com.ishop.model.po.EbLevel;
|
| /**
| * 用户等级定义表。
| * @author 时克英
| * @date 2023-06-30
| */
| public interface LevelCache {
|
| EbLevel get(int id);
|
| void save(EbLevel category);
|
| void update(EbLevel category);
|
| void remove(int id);
| }
|
|