Compare commits
No commits in common. "44ec3e9eedd58881b59718f2893143c054c269e3" and "6dde202353361f21c0f7249c34f169c518d35a33" have entirely different histories.
44ec3e9eed
...
6dde202353
|
@ -1,33 +0,0 @@
|
|||
package com.muyu.enterpise.cache;
|
||||
|
||||
import com.muyu.common.cache.CacheAbsBasic;
|
||||
import com.muyu.common.domain.InformationData;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 车辆全部缓存
|
||||
* @className: InformationDataService ️✈️
|
||||
* @author: Yang 鹏 🦅
|
||||
* @date: 2024/10/7 21:50 ⏰
|
||||
* @Version: 1.0
|
||||
* @description:
|
||||
*/
|
||||
@Component
|
||||
public class InformationDataService extends CacheAbsBasic<String, List<InformationData>> {
|
||||
@Override
|
||||
public String keyPre() {
|
||||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String encode(String key) {
|
||||
return super.encode(key);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String decode(String key) {
|
||||
return super.decode(key);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue