12345678910111213141516171819202122232425 |
- package com.gyee.wisdom.adapter.timeseries.dao;
- import com.gyee.wisdom.adapter.model.adapter.TsData;
- import com.gyee.wisdom.adapter.model.adapter.TsPoint;
- import com.gyee.wisdom.adapter.model.adapter.TsPointData;
- import java.util.List;
- import java.util.Map;
- public interface ILatestDao {
- Map<String, TsData> getTsDataLatest(List<TsPoint> tsPoints) throws Exception;
- int writeDoubleLatest(List<TsPointData> list) throws Exception;
- int writeStringLatest(List<TsPointData> list) throws Exception;
- int writeBooleanLatest(List<TsPointData> list) throws Exception;
- int writeLongLatest(List<TsPointData> list) throws Exception;
- boolean writeLatest(List<TsPointData> dataList) throws Exception;
- }
|