diff --git a/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverQuery.java index 06ca75b..e3fc6ce 100644 --- a/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverQuery.java +++ b/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverQuery.java @@ -509,7 +509,7 @@ public class MatDeliverQuery extends BaseQuery implements IConvertToNativeQuery condition = condition.and("cityPostRestId", cityPostRestId, MongoOper.IS); if (null != areaPostRestId) { condition = condition.and("areaPostRestId", areaPostRestId, MongoOper.IS); - if (streetPostRestId != null) { + if (streetPostRestId != null && !streetPostRestId.equals("")) { condition = condition.and("streetRegisterId", streetPostRestId, MongoOper.IS); } }