问题调整
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.njcn.event.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author guofeihu
|
||||
* @since 2024-08-14
|
||||
*/
|
||||
@Data
|
||||
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 frequencyType, String stationType) {
|
||||
this.eventIds = eventIds;
|
||||
this.frequencyType = frequencyType;
|
||||
this.stationType = stationType;
|
||||
}
|
||||
|
||||
public SpThroughParam() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user