|
@@ -6,6 +6,7 @@ import com.diagbot.dto.HighRiskNeoDTO;
|
|
|
import com.diagbot.dto.OperationBillNeoDTO;
|
|
|
import com.diagbot.dto.OperationInfoDTO;
|
|
|
import com.diagbot.entity.node.*;
|
|
|
+import com.diagbot.util.ListUtil;
|
|
|
import com.diagbot.util.NeoUtil;
|
|
|
|
|
|
import javax.xml.soap.Node;
|
|
@@ -190,7 +191,7 @@ public class YiBaoOperationNameNode {
|
|
|
|
|
|
List<YiBaoOperationName> operations = operationRepository.findByNameIs(opname);
|
|
|
|
|
|
- if (null != operations) {
|
|
|
+ if (ListUtil.isNotEmpty(operations)) {
|
|
|
operation = operations.get(0);
|
|
|
if (null!=operation.getRisklevel() && operation.getRisklevel().trim().length()>0) {
|
|
|
highRiskNeoDTO.setIsHighrisk(true);
|