提交 | 用户 | 时间
|
2228b6
|
1 |
package com.iailab.module.data.point.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
161f55
|
4 |
import com.iailab.module.data.influxdb.pojo.InfluxPointValuePOJO; |
2228b6
|
5 |
import com.iailab.module.data.point.entity.DaPointCollectStatusEntity; |
潘 |
6 |
import org.springframework.scheduling.annotation.Async; |
|
7 |
|
|
8 |
import java.util.Date; |
161f55
|
9 |
import java.util.List; |
2228b6
|
10 |
|
潘 |
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @Description |
|
14 |
* @createTime 2024年12月13日 |
|
15 |
*/ |
|
16 |
public interface DaPointCollectStatusService extends BaseService<DaPointCollectStatusEntity> { |
|
17 |
|
|
18 |
@Async |
6b1383
|
19 |
void recordStatus(String pointNo, String collectValue, Date collectTime); |
161f55
|
20 |
|
潘 |
21 |
@Async |
|
22 |
void recordStatusList(List<InfluxPointValuePOJO> pointValues, Date collectTime); |
|
23 |
|
2228b6
|
24 |
} |