Package com.github.dactiv.orm.core.spring.data.jpa.specification.support

Examples of com.github.dactiv.orm.core.spring.data.jpa.specification.support.PropertySpecification


   * @param restrictionName 约束条件名称,{@link RestrictionNames}
   *
   * @return {@link Specification}
   */
  public static Specification get(String propertyName, Object value,String restrictionName) {
    return new PropertySpecification(propertyName, value,restrictionName);
  }
View Full Code Here

TOP

Related Classes of com.github.dactiv.orm.core.spring.data.jpa.specification.support.PropertySpecification

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.