提交 | 用户 | 时间
|
a955f1
|
1 |
package com.iailab.module.model.influxdb.pojo; |
D |
2 |
|
|
3 |
import com.influxdb.annotations.Column; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
import java.time.Instant; |
|
8 |
|
|
9 |
/** |
|
10 |
* @description: |
|
11 |
* @author: dzd |
|
12 |
* @date: 2025/1/7 13:43 |
|
13 |
**/ |
|
14 |
@Data |
|
15 |
public class InfluxModelResultPOJO implements Serializable { |
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
|
18 |
@Column(tag = true) |
|
19 |
private String outPutId; |
|
20 |
|
|
21 |
@Column(timestamp = true) |
|
22 |
private Instant timestamp; |
|
23 |
|
|
24 |
private String type; |
|
25 |
} |