1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 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日 13:41:00
| */
| @Data
| @Measurement(name = "t_da_str_value")
| public class InfluxPointValueStrPOJO extends InfluxPointValuePOJO {
|
| @Column
| private String value;
| }
|
|