冀北污染值算法上传

This commit is contained in:
2025-03-12 13:41:15 +08:00
parent 7f6aa6f683
commit 295fddb935
23 changed files with 1242 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
package com.njcn.event.pojo.dto;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class EventCount implements Serializable {
private String lineId;
/**
* 暂升次数 1.1~1.8
* 10ms ~ 1min
*/
private int upCounts;
/**
* 暂降次数 0.1~0.9
* 10ms ~ 1min
*/
private int downCounts;
/**
* 短时中断 0~0.1
* 10ms ~ 1min
*/
private int breakCounts;
public EventCount(String lineId) {
this.lineId = lineId;
}
}