Created
May 9, 2020 19:33
-
-
Save HashRaygoza/00efd0d94d911991dd024cb3966763d4 to your computer and use it in GitHub Desktop.
Datos del reporte de empleados
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.vo; | |
| import java.util.Date; | |
| import mx.ticom.autoreporte.anotaciones.ColumnaReporte; | |
| public class DatosReporteEmpleados { | |
| @ColumnaReporte(nombreColumna="Fecha del contrato") | |
| private Date fechaContrato; | |
| @ColumnaReporte(nombreColumna="Nombre del Empleado") | |
| private String empleado; | |
| @ColumnaReporte(nombreColumna="ID Empleado") | |
| private Integer id; | |
| public Date getFechaContrato() { | |
| return fechaContrato; | |
| } | |
| public void setFechaContrato(Date fechaContrato) { | |
| this.fechaContrato = fechaContrato; | |
| } | |
| public String getEmpleado() { | |
| return empleado; | |
| } | |
| public void setEmpleado(String empleado) { | |
| this.empleado = empleado; | |
| } | |
| public Integer getId() { | |
| return id; | |
| } | |
| public void setId(Integer id) { | |
| this.id = id; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment