|
|
@@ -109,7 +109,7 @@ public class IpInterfaceServiceImpl implements IpInterfaceService {
|
|
|
@Override
|
|
|
public List<NameValueVO> optionList() {
|
|
|
List<IpInterfacePO> list = ipInterfaceRepository.findAll();
|
|
|
- List<IpInterfacePO> resultList = list.stream().filter(item -> item.getStatus().equals("normal")).collect(Collectors.toList());
|
|
|
+ List<IpInterfacePO> resultList = list.stream().filter(item -> !item.getStatus().equals("delete")).collect(Collectors.toList());
|
|
|
List<NameValueVO> result = new ArrayList<>();
|
|
|
resultList.forEach(item -> {
|
|
|
NameValueVO vo = new NameValueVO();
|