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); }