动态决定是否进行相角差校验、角型接线是否使用相别的指标进行正式检测、数模脚本与映射校验时动态补充相角的测试项
This commit is contained in:
@@ -11,6 +11,7 @@ import com.njcn.gather.script.pojo.po.SourceIssue;
|
||||
import com.njcn.gather.script.pojo.vo.PqScriptDtlDataVO;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* @author caozehui
|
||||
@@ -130,9 +131,11 @@ public interface IPqScriptDtlsService extends IService<PqScriptDtls> {
|
||||
* @param param
|
||||
* @return
|
||||
*/
|
||||
List<String> getScriptToIcdCheckInfo(PreDetectionParam param);
|
||||
Set<String> getScriptToIcdCheckInfo(PreDetectionParam param);
|
||||
|
||||
/**
|
||||
* 根据脚本id获取脚本详情数据
|
||||
*
|
||||
* @param scriptId 脚本id
|
||||
*/
|
||||
List<PqScriptDtlDataVO> getScriptDtlsDataList(String scriptId);
|
||||
|
||||
@@ -719,7 +719,7 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getScriptToIcdCheckInfo(PreDetectionParam param) {
|
||||
public Set<String> getScriptToIcdCheckInfo(PreDetectionParam param) {
|
||||
PqScriptIssueParam issueParam = new PqScriptIssueParam();
|
||||
issueParam.setSourceId(param.getSourceId());
|
||||
issueParam.setDevIds(param.getDevIds());
|
||||
@@ -730,7 +730,7 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
||||
sourceIssues.forEach(x -> {
|
||||
dataTypeSet.addAll(x.getDevValueTypeList());
|
||||
});
|
||||
return new ArrayList<>(dataTypeSet);
|
||||
return dataTypeSet;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user