Compare commits

...

2 Commits

Author SHA1 Message Date
YangPeng 44ec3e9eed Merge branch 'dev.saas.yp' into dev 2024-10-07 22:10:46 +08:00
YangPeng 45cb6b2a17 fix():添加车辆全部缓存 2024-10-07 22:05:38 +08:00
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
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);
}
}