miemie 5 سال پیش
والد
کامیت
4c2015beb3
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      mybatis-plus-core/src/test/java/com/baomidou/mybatisplus/test/WrapperTest.java

+ 4 - 0
mybatis-plus-core/src/test/java/com/baomidou/mybatisplus/test/WrapperTest.java

@@ -166,6 +166,10 @@ class WrapperTest {
         logSqlSegment("not exists", new QueryWrapper<User>()
                 .notExists("select"),
             "(NOT EXISTS (select))");
+
+        logSqlSegment("not", new QueryWrapper<User>()
+                .not(i -> i.eq("id", 1)),
+            "(NOT (id = ?))");
     }
 
     @Test