Browse Source

add a new fieldStrategy type,SQL will not be added under certain conditions

miemie 6 năm trước cách đây
mục cha
commit
9e690b9ef7

+ 1 - 1
mybatis-plus-annotation/src/main/java/com/baomidou/mybatisplus/annotation/FieldStrategy.java

@@ -41,7 +41,7 @@ public enum FieldStrategy {
      */
     DEFAULT,
     /**
-     * 在对应情况下不再加入相应的条件
+     * 不加入 SQL
      */
     NEVER
 }