package com.beagle.base.service; import com.beagle.base.bean.vo.*; import com.rtdb.model.BlobData; import com.rtdb.model.CoorData; import com.rtdb.model.DoubleData; import com.rtdb.model.IntData; import java.util.List; /** * @author lzz */ public interface SnapshotService { List getDoubleSnapshots(SnapshotDoubleParam param); List getIntSnapshots(SnapshotIntParam param); List getBlobSnapshots(SnapshotBlobParam param); List getCoorSnapshots(SnapshotCoorParam param); Integer putIntSnapshots(SnapshotPutIntParam param); Integer putDoubleSnapshots(SnapshotPutDoubleParam param); }