联调有功功率,解决部分bug

This commit is contained in:
wr
2025-04-08 16:35:08 +08:00
parent cd3f245cd9
commit 20d5dbc942
11 changed files with 135 additions and 83 deletions

View File

@@ -14,11 +14,15 @@ public class SpThroughParam {
@ApiModelProperty(name = "eventIds",value = "事件ID集合")
private List<String> eventIds;
@ApiModelProperty("高电压,低电压字典")
private String frequencyType;
@ApiModelProperty(name = "lineType",value = "监测点类别(1:风电场、2:光伏电站)")
private String stationType;
public SpThroughParam(List<String> eventIds, String stationType) {
public SpThroughParam(List<String> eventIds,String frequencyType, String stationType) {
this.eventIds = eventIds;
this.frequencyType = frequencyType;
this.stationType = stationType;
}