numero de lote
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:
@@ -18,6 +18,7 @@ public class Lote {
|
||||
private String estado;
|
||||
private Boolean visible = true;
|
||||
private String video;
|
||||
private int numLote;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "remate_id")
|
||||
@@ -27,6 +28,14 @@ public class Lote {
|
||||
@JoinColumn(name = "cabana_id")
|
||||
private Cabana cabana;
|
||||
|
||||
public int getNumLote() {
|
||||
return numLote;
|
||||
}
|
||||
|
||||
public void setNumLote(int numLote) {
|
||||
this.numLote = numLote;
|
||||
}
|
||||
|
||||
public String getVideo() {
|
||||
return video;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user