Cache uav device when add a new uav

This commit is contained in:
Bingkun Li 2026-01-29 13:07:42 +08:00
parent f203fd4ec7
commit 71023e0153

View File

@ -110,6 +110,7 @@ public class UavServiceImpl implements IUavService {
uavMapper.update(e); uavMapper.update(e);
} else { } else {
uavMapper.insert(e); uavMapper.insert(e);
cache(e);
} }
return e; return e;
} }