com.github.leeonky.dal.runtime.Order Maven / Gradle / Ivy
package com.github.leeonky.dal.runtime;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target({TYPE})
@Retention(RUNTIME)
public @interface Order {
int value();
int BUILD_IN = 100;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy