接口 NotIn<Children>

类型参数:
Children - 继承的类型
所有已知子接口:
Condition<Children>

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

    • 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