Adição de coluna INDVENTARIOCARD na tabela Ruta ... se vende RioCard na editarRuta.zul
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@48653 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
d8ad4dfe39
commit
87412a7777
|
@ -89,6 +89,8 @@ public class Ruta implements Serializable {
|
||||||
private Integer cantEixos;
|
private Integer cantEixos;
|
||||||
@Column(name = "CANTASIENTOS")
|
@Column(name = "CANTASIENTOS")
|
||||||
private Integer cantAsientos;
|
private Integer cantAsientos;
|
||||||
|
@Column(name = "INDVENTARIOCARD")
|
||||||
|
private Boolean indVentaRioCard;
|
||||||
|
|
||||||
public Ruta() {
|
public Ruta() {
|
||||||
}
|
}
|
||||||
|
@ -297,6 +299,14 @@ public class Ruta implements Serializable {
|
||||||
public void setCantAsientos(Integer cantAsientos) {
|
public void setCantAsientos(Integer cantAsientos) {
|
||||||
this.cantAsientos = cantAsientos;
|
this.cantAsientos = cantAsientos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndVentaRioCard() {
|
||||||
|
return indVentaRioCard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndVentaRioCard(Boolean indVentaRioCard) {
|
||||||
|
this.indVentaRioCard = indVentaRioCard;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
|
@ -304,7 +314,7 @@ public class Ruta implements Serializable {
|
||||||
hash += (rutaId != null ? rutaId.hashCode() : 0);
|
hash += (rutaId != null ? rutaId.hashCode() : 0);
|
||||||
return hash;
|
return hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object object) {
|
public boolean equals(Object object) {
|
||||||
if (!(object instanceof Ruta)) {
|
if (!(object instanceof Ruta)) {
|
||||||
|
|
Loading…
Reference in New Issue