
sf.database.mapper.annotation.AutoSQL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.database.mapper.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 根据方法名称自动生成sql,使用spring-data功能生成sql,里面的参数必须使用@Param注解.
* @see org.springframework.data.repository.query.Param
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface AutoSQL {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy