houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
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日 14:21:00
11  */
12 @Data
13 @Measurement(name = "t_tag_int_value")
14 public class InfluxTagValueIntPOJO extends InfluxTagValuePOJO {
15     @Column
16     private Integer value;
17
18
19 }