com.firefly.db.annotation.Id Maven / Gradle / Ivy
package com.firefly.db.annotation;
import java.lang.annotation.*;
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Id {
String value();
boolean autoIncrement() default true;
}