Compare commits
2 Commits
11ab968c8d
...
39432a1270
Author | SHA1 | Date |
---|---|---|
|
39432a1270 | |
|
c7c51c2305 |
|
@ -0,0 +1,28 @@
|
|||
package com.muyu.enterprise.cache;
|
||||
|
||||
import com.muyu.common.cache.CacheAbsBasic;
|
||||
import com.muyu.domain.CarInformation;
|
||||
|
||||
/**
|
||||
* 车辆缓存服务
|
||||
* @className: VehicleCacheService ️✈️
|
||||
* @author: Yang 鹏 🦅
|
||||
* @date: 2024/9/30 00:36 ⏰
|
||||
* @Version: 1.0
|
||||
* @description:
|
||||
*/
|
||||
public class VehicleCacheService extends CacheAbsBasic<String, CarInformation> {
|
||||
|
||||
@Override
|
||||
public String keyPre() {
|
||||
return "vehicle:info:";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String decode(String key){
|
||||
return key.replace("vehicle:info:","");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -53,16 +53,6 @@ public class CarFenceServiceMybaitsImpl extends ServiceImpl<CarFenceServiceMybai
|
|||
return b;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object updateFenceGroupById(Integer groupId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object activate(Integer groupId) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 根据围栏组的id查询绑定的围栏的中间表
|
||||
|
|
Loading…
Reference in New Issue