提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.data.influxdb.pojo; |
H |
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 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2023年04月24日 16:08:00 |
|
13 |
*/ |
|
14 |
@Data |
|
15 |
public class InfluxTagValuePOJO implements Serializable { |
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
|
18 |
@Column(tag = true) |
|
19 |
private String id; |
|
20 |
|
|
21 |
@Column |
|
22 |
private String type; |
|
23 |
|
|
24 |
@Column(timestamp = true) |
|
25 |
private Instant timestamp; |
|
26 |
} |