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

norm.anno.Query Maven / Gradle / Ivy

There is a newer version: 2.4
Show newest version
package norm.anno;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 表示自定义sql语句的查询。这个sql查询是select查询,返回值可以是Bean实体、List、或者java基本类型
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Query {
    String sql();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy