Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.data.influxdb.pojo;
H 2
3 import com.influxdb.annotations.Column;
4 import com.influxdb.annotations.Measurement;
5 import lombok.Data;
6
7 /**
8  * @author PanZhibao
9  * @Description
10  * @createTime 2023年05月08日 13:25:00
11  */
12 @Data
13 @Measurement(name = "t_da_sim_value")
14 public class InfluxPointValueSimPOJO extends InfluxPointValuePOJO {
15
16     @Column
17     private Double value;
18 }