问题调整
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() {
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import com.njcn.event.mapper.majornetwork.SpThroughMapper;
|
||||
import com.njcn.event.pojo.po.SpThroughPO;
|
||||
import com.njcn.event.pojo.vo.SpThroughVO;
|
||||
import com.njcn.event.service.majornetwork.SpThroughService;
|
||||
import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
import com.njcn.event.pojo.param.SpThroughParam;
|
||||
import com.njcn.system.api.DicDataFeignClient;
|
||||
import com.njcn.system.api.DictTreeFeignClient;
|
||||
import com.njcn.system.enums.DicDataEnum;
|
||||
|
||||
@@ -13,7 +13,7 @@ import com.njcn.event.pojo.vo.VoltageRideThroughVo;
|
||||
import com.njcn.event.service.majornetwork.EventDetailService;
|
||||
import com.njcn.event.service.majornetwork.SpThroughService;
|
||||
import com.njcn.event.service.majornetwork.VoltageRideThroughEventService;
|
||||
import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
import com.njcn.event.pojo.param.SpThroughParam;
|
||||
import com.njcn.supervision.api.UserLedgerFeignClient;
|
||||
import com.njcn.supervision.pojo.vo.user.NewUserReportVO;
|
||||
import com.njcn.system.api.AreaFeignClient;
|
||||
|
||||
@@ -3,7 +3,7 @@ package com.njcn.event.service.majornetwork;
|
||||
import com.github.jeffreyning.mybatisplus.service.IMppService;
|
||||
import com.njcn.event.pojo.po.SpThroughPO;
|
||||
import com.njcn.event.pojo.vo.SpThroughVO;
|
||||
import com.njcn.prepare.harmonic.pojo.param.SpThroughParam;
|
||||
import com.njcn.event.pojo.param.SpThroughParam;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user