fix():把saas缓存对象换成缓存列表

dev.operation
86191 2024-10-07 20:45:04 +08:00
parent 7031534557
commit 87c93413a1
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
package com.muyu.cache;
import com.muyu.common.domain.resp.SysCarVo;
import org.springframework.stereotype.Component;
/**
* @Author YuPing
* @Description VIN
* @Version 1.0
* @Data 2024-10-07 12:02:43
*/
@Component
public class CarVinCacheService extends CacheAbsBasic<String, SysCarVo> {
/**
*
* @return
*/
@Override
public String keyPre() {
return "carVin";
}
/**
*
* @param key key
* @return
*/
@Override
public String decode(String key) {
return key.replace(keyPre(), "");
}
}