package com.ruoyi.system.utils.wx.tools; /** * @author xiaochen * @ClassName WxCacheTemplate * @Description * @date 2021-01-11 11:27 */ public interface WxCacheTemplate { /** * 保存key * * @param key * @param value * @return */ boolean setKey(String key, T value); /** * 获取缓存 * * @param key * @return */ T getKey(String key); /** * 删除 * * @param key * @return */ boolean delKey(String key); }