接口 NotIn<Children>

所有已知子接口:
ConditionOperations<Children>, DeletionAction<R>, QueryAction<R>, QueryOperations<C>, UpdateAction<R>, UpdateOperations<C>

public interface NotIn<Children>
the is NotIn
从以下版本开始:
0.0.4
作者:
zeng
  • 方法详细资料

    • notIn

      Children notIn(String field, Collection<?> values)
      范围不匹配
      参数:
      field - 字段名
      values - 值集合
      返回:
      具体实现
    • notIn

      Children notIn(Enum<?> field, Collection<?> values)
      范围不匹配
      参数:
      field - 字段枚举
      values - 值集合
      返回:
      具体实现
    • notIn

      Children notIn(String tableAlias, Enum<?> field, Collection<?> values)
      范围不匹配
      参数:
      tableAlias - 字段表别名
      field - 字段枚举
      values - 值集合
      返回:
      具体实现
    • notIn

      Children notIn(String field, Object... values)
      范围不匹配
      参数:
      field - 字段名
      values - 值数组
      返回:
      具体实现
    • notIn

      Children notIn(Enum<?> field, Object... values)
      范围不匹配
      参数:
      field - 字段枚举
      values - 值数组
      返回:
      具体实现
    • notIn

      Children notIn(String tableAlias, Enum<?> field, Object... values)
      范围不匹配
      参数:
      tableAlias - 字段表别名
      field - 字段枚举
      values - 值数组
      返回:
      具体实现
    • notIn

      Children notIn(boolean condition, String field, Collection<?> values)
      范围不匹配
      参数:
      condition - 是否应用条件
      field - 字段名
      values - 值集合
      返回:
      具体实现
    • notIn

      Children notIn(boolean condition, Enum<?> field, Collection<?> values)
      范围不匹配
      参数:
      condition - 是否应用条件
      field - 字段枚举
      values - 值集合
      返回:
      具体实现
    • notIn

      Children notIn(boolean condition, String tableAlias, Enum<?> field, Collection<?> values)
      范围不匹配
      参数:
      condition - 是否应用条件
      tableAlias - 字段表别名
      field - 字段枚举
      values - 值集合
      返回:
      具体实现
    • notIn

      Children notIn(boolean condition, String field, Object... values)
      范围不匹配
      参数:
      condition - 是否应用条件
      field - 字段名
      values - 值数组
      返回:
      具体实现
    • notIn

      Children notIn(boolean condition, Enum<?> field, Object... values)
      范围不匹配
      参数:
      condition - 是否应用条件
      field - 字段枚举
      values - 值数组
      返回:
      具体实现
    • notIn

      Children notIn(boolean condition, String tableAlias, Enum<?> field, Object... values)
      范围不匹配
      参数:
      condition - 是否应用条件
      tableAlias - 字段表别名
      field - 字段枚举
      values - 值数组
      返回:
      具体实现
    • notInSql

      Children notInSql(String field, String sqlValue)
      字段 NOT IN ( sql语句 )

      !! sql 注入方式的 not in 方法 !!

      例1: notInSql("id", "1, 2, 3, 4, 5, 6")

      例2: notInSql("id", "select id from table where id < 3")

      参数:
      field - 字段
      sqlValue - sql语句 ---> 1,2,3,4,5,6 或者 select id from table where id < 3
      返回:
      children
    • notInSql

      Children notInSql(Enum<?> field, String sqlValue)
      字段 NOT IN ( sql语句 )

      !! sql 注入方式的 not in 方法 !!

      例1: notInSql("id", "1, 2, 3, 4, 5, 6")

      例2: notInSql("id", "select id from table where id < 3")

      参数:
      field - 字段枚举
      sqlValue - sql语句 ---> 1,2,3,4,5,6 或者 select id from table where id < 3
      返回:
      children
    • notInSql

      Children notInSql(String tableAlias, Enum<?> field, String sqlValue)
      字段 NOT IN ( sql语句 )

      !! sql 注入方式的 not in 方法 !!

      例1: notInSql("id", "1, 2, 3, 4, 5, 6")

      例2: notInSql("id", "select id from table where id < 3")

      参数:
      tableAlias - 字段表别名
      field - 字段枚举
      sqlValue - sql语句 ---> 1,2,3,4,5,6 或者 select id from table where id < 3
      返回:
      children
    • notInSql

      Children notInSql(boolean condition, String field, String sqlValue)
      字段 NOT IN ( sql语句 )

      !! sql 注入方式的 not in 方法 !!

      例1: notInSql("id", "1, 2, 3, 4, 5, 6")

      例2: notInSql("id", "select id from table where id < 3")

      参数:
      condition - 执行条件
      field - 字段
      sqlValue - sql语句 ---> 1,2,3,4,5,6 或者 select id from table where id < 3
      返回:
      children
    • notInSql

      Children notInSql(boolean condition, Enum<?> field, String sqlValue)
      字段 NOT IN ( sql语句 )

      !! sql 注入方式的 not in 方法 !!

      例1: notInSql("id", "1, 2, 3, 4, 5, 6")

      例2: notInSql("id", "select id from table where id < 3")

      参数:
      condition - 执行条件
      field - 字段枚举
      sqlValue - sql语句 ---> 1,2,3,4,5,6 或者 select id from table where id < 3
      返回:
      children
    • notInSql

      Children notInSql(boolean condition, String tableAlias, Enum<?> field, String sqlValue)
      字段 NOT IN ( sql语句 )

      !! sql 注入方式的 not in 方法 !!

      例1: notInSql("id", "1, 2, 3, 4, 5, 6")

      例2: notInSql("id", "select id from table where id < 3")

      参数:
      condition - 执行条件
      tableAlias - 字段表别名
      field - 字段枚举
      sqlValue - sql语句 ---> 1,2,3,4,5,6 或者 select id from table where id < 3
      返回:
      children