1.解决变电站数量不统一问题
2.替换最新污染值 3.解决终端数量不一致问题
This commit is contained in:
@@ -24,6 +24,8 @@ public class LinePollution implements Serializable {
|
||||
@ApiModelProperty("变电站")
|
||||
private String subStationName;
|
||||
|
||||
private String subStationId;
|
||||
|
||||
/**
|
||||
* 终端名称
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.njcn.harmonic.pojo.excel.pollution;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author wr
|
||||
* @description
|
||||
* @date 2025/12/9 21:12
|
||||
*/
|
||||
@Data
|
||||
public class UserLinePollution {
|
||||
|
||||
private String lineId;
|
||||
private Double vHarmonicValue;
|
||||
private List<User> userList;
|
||||
|
||||
@Data
|
||||
public static class User{
|
||||
private String id;
|
||||
private String projectName;
|
||||
private String stationId;
|
||||
private String lineId;
|
||||
private String city;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user