指标通用查询
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.njcn.influx.pojo.dto;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.influxdb.annotation.Column;
|
||||
import org.influxdb.annotation.Measurement;
|
||||
import retrofit2.http.Field;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2023/6/5 10:23【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
|
||||
|
||||
@Data
|
||||
public class StatisticalDataDTO {
|
||||
private String LineId;
|
||||
private String Phase;
|
||||
@Column(name = "Stat_Method")
|
||||
private String statMethod;
|
||||
private String statisticalName;
|
||||
private Double statisticalData;
|
||||
}
|
||||
Reference in New Issue
Block a user