提交 | 用户 | 时间 | ||
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_dig_value") | |
14 | public class InfluxPointValueDigPOJO extends InfluxPointValuePOJO { | |
15 | @Column() | |
16 | private Integer value; | |
17 | } |