Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
提交 | 用户 | 时间
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日 17:27:00
13  */
14 @Data
15 public class InfluxPointValuePOJO implements Serializable {
16     private static final long serialVersionUID = 1L;
17
18     @Column(tag = true)
19     private String point;
20
21     @Column(timestamp = true)
22     private Instant timestamp;
23
24     private String type;
25 }