暂态事件查询事件

This commit is contained in:
huangzj
2023-09-06 14:19:55 +08:00
parent 3035011064
commit 1d6b39609b
15 changed files with 91 additions and 15 deletions

View File

@@ -162,7 +162,7 @@ public interface InfluxDBTableConstant {
String CL_DID = "cl_did";
/**
* 逻辑子设备id
* 逻辑子设备id/暂态事件号
*/
String UUID = "uuid";

View File

@@ -0,0 +1,23 @@
package com.njcn.influx.pojo.dto;
import lombok.Data;
import java.util.List;
/**
* Description:
* Date: 2023/9/6 9:52【需求编号】
*
* @author clam
* @version V1.0.0
*/
@Data
public class EventDataSetDTO {
private String name;
private String value;
private String type;
private String unit;
private String showName;
}

View File

@@ -12,6 +12,7 @@ import java.util.List;
* @version V1.0.0
*/
@Data
@Deprecated
public class EventQueryDTO {
private String devId;
private List<String> lineIds;

View File

@@ -17,6 +17,7 @@ import java.time.Instant;
*/
@Data
@Measurement(name = "evt_data")
@Deprecated
public class EntData {
@Column(name = "time")