仪表盘
版本库
文件存储
活动
搜索
登录
main
/
PLTWEB
平台WEB项目
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
在获取相关业务类型下的属性时,未在属性中定义的数据直接跳过
yuxc
2025-01-09
f49622515192a11878628b8eecbc7315671ae562
[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);
}