辽宁前置接口开发

This commit is contained in:
hzj
2024-11-07 11:01:09 +08:00
parent 91b3f63b99
commit a87ac5a246
30 changed files with 703 additions and 4 deletions

View File

@@ -0,0 +1,37 @@
package com.njcn.event.pojo.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDateTime;
/**
* Description:
* Date: 2024/11/5 16:07【需求编号】
*
* @author clam
* @version V1.0.0
*/
@Data
public class EventDeatilDTO {
@ApiModelProperty("监测点ID ")
private String monitorId;
@ApiModelProperty("暂降触发时间 yyyy-MM-dd hh:mm:ss.SSS")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS")
private LocalDateTime startTime;
@ApiModelProperty("幅值 ")
private Double amplitude;
@ApiModelProperty("持续时间 单位毫秒")
private Double duration;
@ApiModelProperty("暂态类型 1210001-暂升 1210002-暂降 1210004-中断 1210003-其它")
private Integer eventType;
@ApiModelProperty("相别 ")
private String phase;
@ApiModelProperty("波形路径 ")
private String wavePath;
}