All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sf.database.mapper.annotation.AutoSQL Maven / Gradle / Ivy

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