Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created May 9, 2020 19:26
Show Gist options
  • Select an option

  • Save HashRaygoza/484af2ce6725ce9d406527b5e73834a4 to your computer and use it in GitHub Desktop.

Select an option

Save HashRaygoza/484af2ce6725ce9d406527b5e73834a4 to your computer and use it in GitHub Desktop.
Anotacion para columna de reporte
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