1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.iailab.module.data.influxdb.pojo;
|
| import com.influxdb.annotations.Column;
| import com.influxdb.annotations.Measurement;
| import lombok.Data;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2023年05月08日 14:21:00
| */
| @Data
| @Measurement(name = "t_tag_int_value")
| public class InfluxTagValueIntPOJO extends InfluxTagValuePOJO {
| @Column
| private Integer value;
|
|
| }
|
|