#7 Perfil de Personal Administrativo - Listado de empleados (CORRECCIONES)

This commit is contained in:
jesus.pelaez 2024-08-27 09:41:06 -04:00
parent ba57c7a5a9
commit 6fe875d062

View File

@ -17,7 +17,7 @@ import java.util.List;
@NoArgsConstructor @NoArgsConstructor
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
public class Employee extends BaseEntity { public class Employee extends BaseEntity {
private String name; private String firstName;
private String lastName; private String lastName;
private String status; private enum status { ACTIVE, INACTIVE};
} }