
com.slyak.spring.jpa.TemplateQueryObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-jpa-extra Show documentation
Show all versions of spring-data-jpa-extra Show documentation
spring-data-jpa dynamic query support like mybatis and much easier than mybatis.
package com.slyak.spring.jpa;
import org.springframework.data.annotation.QueryAnnotation;
import java.lang.annotation.*;
/**
* .
*
*
* @author stormning
* @version V1.0, 2015/8/9.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@QueryAnnotation
@Documented
public @interface TemplateQueryObject {
String value() default "";
}