Commit 8a187e5b7b5350bc9fe67948e7734e039d0058a4

Authored by yangfei
1 parent 718edea685

指导意见

Showing 1 changed file with 3 additions and 2 deletions

platform-dal/src/main/java/com/lyms/platform/query/GuidelinesQuery.java View file @ 8a187e5
... ... @@ -38,9 +38,10 @@
38 38 }
39 39 if (null != number) {
40 40 condition = condition.and("number", number, MongoOper.IS);
41   - }else{
42   - condition = condition.and("number", false, MongoOper.EXISTS);
43 41 }
  42 + /*else{
  43 + condition = condition.and("number", false, MongoOper.EXISTS);
  44 + }*/
44 45 return condition.toMongoQuery();
45 46 }
46 47