fixes bug #9906
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@74544 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
3b8ed36ff1
commit
6934958da8
|
@ -64,6 +64,8 @@ public class DiagramaAutobus implements Serializable {
|
||||||
@Column(name = "INDTIPO")
|
@Column(name = "INDTIPO")
|
||||||
private Integer indtipo;
|
private Integer indtipo;
|
||||||
|
|
||||||
|
@Column(name = "INDUSAVAGAOFIM")
|
||||||
|
private Boolean indUsaVagaoFim;
|
||||||
|
|
||||||
public DiagramaAutobus() {
|
public DiagramaAutobus() {
|
||||||
super();
|
super();
|
||||||
|
@ -189,5 +191,13 @@ public class DiagramaAutobus implements Serializable {
|
||||||
public void setIndtipo(Integer indtipo) {
|
public void setIndtipo(Integer indtipo) {
|
||||||
this.indtipo = indtipo;
|
this.indtipo = indtipo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndUsaVagaoFim() {
|
||||||
|
return indUsaVagaoFim;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndUsaVagaoFim(Boolean indUsaVagaoFim) {
|
||||||
|
this.indUsaVagaoFim = indUsaVagaoFim;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue