44 lines
932 B
Java
44 lines
932 B
Java
|
|
package com.njcn.influx.pojo.po;
|
|||
|
|
|
|||
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|||
|
|
import com.njcn.influx.utils.InstantDateSerializer;
|
|||
|
|
import lombok.Data;
|
|||
|
|
import org.influxdb.annotation.Column;
|
|||
|
|
import org.influxdb.annotation.Measurement;
|
|||
|
|
|
|||
|
|
import java.time.Instant;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 类的介绍:
|
|||
|
|
*
|
|||
|
|
* @author xuyang
|
|||
|
|
* @version 1.0.0
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@Measurement(name = "data_fluc")
|
|||
|
|
public class DataFluc {
|
|||
|
|
|
|||
|
|
@Column(name = "time")
|
|||
|
|
@JsonSerialize(using = InstantDateSerializer.class)
|
|||
|
|
private Instant time;
|
|||
|
|
|
|||
|
|
@Column(name = "fluc")
|
|||
|
|
private Double fluc;
|
|||
|
|
|
|||
|
|
@Column(name = "fluccf")
|
|||
|
|
private Double fluccf;
|
|||
|
|
|
|||
|
|
@Column(name = "line_id",tag = true)
|
|||
|
|
private String lineId;
|
|||
|
|
|
|||
|
|
@Column(name = "phasic_type",tag = true)
|
|||
|
|
private String phaseType;
|
|||
|
|
|
|||
|
|
@Column(name = "quality_flag",tag = true)
|
|||
|
|
private String qualityFlag;
|
|||
|
|
|
|||
|
|
@Column(name = "value_type",tag = true)
|
|||
|
|
private String valueType;
|
|||
|
|
|
|||
|
|
}
|