#7 Perfil de Personal Administrativo - Listado de empleados #8
@ -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;
|
||||||
jesus.pelaez marked this conversation as resolved
Outdated
|
|||||||
private String lastName;
|
private String lastName;
|
||||||
private String status;
|
private enum status { ACTIVE, INACTIVE};
|
||||||
jesus.pelaez marked this conversation as resolved
Outdated
alex
commented
definir un enum con los status ACTIVE, INACTIVE. en vez de usar un String. definir un enum con los status ACTIVE, INACTIVE. en vez de usar un String.
jesus.pelaez
commented
Cambio realizado, esperando para revisión Cambio realizado, esperando para revisión
|
|||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user
mantener
firstName
para este campo para ser mas explicito.Cambio realizado, esperando para revisión