查询暂降事件

This commit is contained in:
huangzj
2023-08-31 08:56:11 +08:00
parent 03f2982c5a
commit 381de5e088
5 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.njcn.influx.pojo.dto;
import lombok.Data;
import java.util.List;
/**
* Description:
* Date: 2023/8/30 18:38【需求编号】
*
* @author clam
* @version V1.0.0
*/
@Data
public class EventQueryDTO {
private String devId;
private List<String> lineIds;
private List<String> target;
}