仪表盘
版本库
文件存储
活动
搜索
登录
main
/
PLTWEB
平台WEB项目
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
修改第一次进入页面无法正常显示问题
yuxc
2024-07-19
d5a7068f6da8a092222ec7e73f749d4fba945dd9
[PLTWEB.git]
/
Source
/
Service
/
ServiceBase
/
src
/
com
/
vci
/
server
/
cache
/
redis
/
RedisExecutor.java
1
2
3
4
5
6
7
8
package com.vci.server.cache.redis;
import redis.clients.jedis.Jedis;
// redis具体逻辑接口
public interface RedisExecutor<T> {
T execute(Jedis jedis);
}