Created
May 9, 2020 19:26
-
-
Save HashRaygoza/484af2ce6725ce9d406527b5e73834a4 to your computer and use it in GitHub Desktop.
Anotacion para columna de reporte
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package mx.ticom.autoreporte.anotaciones; | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| @Retention(RetentionPolicy.RUNTIME) | |
| @Target(ElementType.FIELD) | |
| public @interface ColumnaReporte { | |
| public String nombreColumna() default ""; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment