cn.foxtech.persist.common.history.IDeviceHistoryUpdater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fox-edge-server-persist-common Show documentation
Show all versions of fox-edge-server-persist-common Show documentation
fox-edge-server-persist-common
The newest version!
/* ----------------------------------------------------------------------------
* Copyright (c) Guangzhou Fox-Tech Co., Ltd. 2020-2024. All rights reserved.
* --------------------------------------------------------------------------- */
package cn.foxtech.persist.common.history;
import cn.foxtech.common.entity.entity.DeviceValueEntity;
import java.util.Map;
public interface IDeviceHistoryUpdater {
void saveHistoryEntity(DeviceValueEntity existValueEntity, Map statusValues);
void clearHistoryEntity();
}