Merge remote-tracking branch 'origin/dev.operation' into dev

dev.vehiclegateway
86191 2024-10-02 16:44:44 +08:00
commit 89825669dc
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public abstract class CacheAbsBasic<K,V> implements CacheBasic<K,V>{
@Override
public void put(K key, V value) {
redisService.setCacheObject(encodeKey(key), value,30L, TimeUnit.MINUTES); // 编码 --> 缓存基础的对象 Integer String 实体类等
redisService.setCacheObject(encodeKey(key), value,24L, TimeUnit.HOURS); // 编码 --> 缓存基础的对象 Integer String 实体类等
}
@Override