All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.babyfish.jimmer.sql.EnableDtoGeneration Maven / Gradle / Ivy

There is a newer version: 0.9.19
Show newest version
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 { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy