@@ -263,6 +263,6 @@ public class OrderLogLogic {
public List<Abnormal> abnormalList(String exType) {
- return abnormalService.lambdaQuery().eq(Abnormal::getExType,exType).list();
+ return abnormalService.lambdaQuery().eq(!StringUtil.isEmpty(exType),Abnormal::getExType,exType).list();
}