Se agrega campo DISPONIBLE EN TOTALBUS a tabla PARADAS
parent
f29a80329f
commit
0a70fda9da
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ModelWeb</artifactId>
|
<artifactId>ModelWeb</artifactId>
|
||||||
<version>1.103.0</version>
|
<version>1.103.1</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -110,6 +110,9 @@ public class Parada implements Serializable, Auditavel<Parada> {
|
||||||
@Column(name="INDINTEGRACAOW2I")
|
@Column(name="INDINTEGRACAOW2I")
|
||||||
private Boolean indIntegracaoW2i;
|
private Boolean indIntegracaoW2i;
|
||||||
|
|
||||||
|
@Column(name="INDDISPONIBLETOTALBUS")
|
||||||
|
private Boolean indDisponibleTotalBus;
|
||||||
|
|
||||||
@Column(name="CODSIGMA")
|
@Column(name="CODSIGMA")
|
||||||
private String codSigma;
|
private String codSigma;
|
||||||
|
|
||||||
|
@ -382,6 +385,14 @@ public class Parada implements Serializable, Auditavel<Parada> {
|
||||||
this.indIntegracaoW2i = indIntegracaoW2i;
|
this.indIntegracaoW2i = indIntegracaoW2i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndDisponibleTotalBus() {
|
||||||
|
return indDisponibleTotalBus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndDisponibleTotalBus(Boolean indDisponibleTotalBus) {
|
||||||
|
this.indDisponibleTotalBus = indDisponibleTotalBus;
|
||||||
|
}
|
||||||
|
|
||||||
public AgrupamentoParada getAgrupamentoParada() {
|
public AgrupamentoParada getAgrupamentoParada() {
|
||||||
return agrupamentoParada;
|
return agrupamentoParada;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue