org.babyfish.jimmer.sql.EnableDtoGeneration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql Show documentation
Show all versions of jimmer-sql Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is only required by java, not kotlin.
*
* The `jimmer-apt` handles these annotations
*
* - org.babyfish.jimmer.Immutable
* - org.babyfish.jimmer.sql.Entity
* - org.babyfish.jimmer.sql.MappedSuperclass
* - org.babyfish.jimmer.sql.Embeddable
* - org.babyfish.jimmer.error.ErrorFamily
*
*
* If the current project does not have any classes decorated by any one of above annotations,
* the `jimmer-apt` will not be triggered, please write an unuseful empty class and use this
* annotation to decorate it.
*/
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
public @interface EnableDtoGeneration {
}