Class WhereBuilder<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      WhereBuilder()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T where​(java.util.function.Supplier<Expression> supplier)
      添加where条件,条件通过运算获得
      T where​(Expression exp)
      添加where条件
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • whereCondition

        protected Expression whereCondition
    • Constructor Detail

      • WhereBuilder

        public WhereBuilder()
    • Method Detail

      • where

        public T where​(Expression exp)
        添加where条件
        Parameters:
        exp - 条件表达式
        Returns:
        this
      • where

        public T where​(java.util.function.Supplier<Expression> supplier)
        添加where条件,条件通过运算获得
        Parameters:
        supplier - 条件提供者
        Returns:
        this