18 lines
445 B
Plaintext
18 lines
445 B
Plaintext
package com.bonus.core.annotation;
|
|
|
|
import static java.lang.annotation.ElementType.FIELD;
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Documented
|
|
@Retention(RUNTIME)
|
|
@Target(FIELD)
|
|
public @interface BackstageField {
|
|
String value();
|
|
String column() default "";
|
|
String jdbcType() default "";
|
|
}
|