se añadio telefono a la cabaña
Some checks failed
Deploy Spring Boot App / build-and-deploy (push) Has been cancelled
Some checks failed
Deploy Spring Boot App / build-and-deploy (push) Has been cancelled
This commit is contained in:
@@ -11,6 +11,7 @@ public class Cabana {
|
|||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
private String nombre;
|
private String nombre;
|
||||||
|
private Integer Telefono;
|
||||||
private Boolean visible = true;
|
private Boolean visible = true;
|
||||||
|
|
||||||
public Long getId() {
|
public Long getId() {
|
||||||
@@ -21,6 +22,14 @@ public class Cabana {
|
|||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getTelefono() {
|
||||||
|
return Telefono;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTelefono(Integer telefono) {
|
||||||
|
Telefono = telefono;
|
||||||
|
}
|
||||||
|
|
||||||
public String getNombre() {
|
public String getNombre() {
|
||||||
return nombre;
|
return nombre;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user