gu.sql2java.annotations.SchemaConstantSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
The newest version!
package gu.sql2java.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 定义字段或方法,指定该方法或字段为可提供常量
* @author guyadong
* @since 3.31.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD,ElementType.FIELD})
public @interface SchemaConstantSupplier {
String associated();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy