leonardo 2015-10-28 20:10:59 +00:00
parent 445742dd97
commit d49f1510b8
1 changed files with 11 additions and 0 deletions

View File

@ -144,6 +144,8 @@ public class PuntoVenta implements Serializable {
@OneToOne(cascade = CascadeType.ALL)
@JoinColumn(name = "PUNTOVENTAPADRE_ID")
private PuntoVenta puntoVentaPadre;
@Column(name = "INDESTOQUEMOTORISTA")
private Boolean indEstoqueMotorista;
@JoinColumn(name = "PTOVTATIPOEST_ID")
@ManyToOne
@ -817,4 +819,13 @@ public class PuntoVenta implements Serializable {
public void setCodpostal(Long codpostal) {
this.codpostal = codpostal;
}
public Boolean getIndEstoqueMotorista() {
return indEstoqueMotorista;
}
public void setIndEstoqueMotorista(Boolean indEstoqueMotorista) {
this.indEstoqueMotorista = indEstoqueMotorista;
}
}