[fixes bug#5712]
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@38497 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
84457ed342
commit
bb6877c656
|
@ -104,6 +104,9 @@ public class EmpresaImposto implements Serializable {
|
|||
@JoinColumn(name = "ESTADO_ID", referencedColumnName = "ESTADO_ID")
|
||||
@ManyToOne
|
||||
private Estado estado;
|
||||
|
||||
@Column(name = "INDICEICMSECF")
|
||||
private Integer indiceICMSecf;
|
||||
|
||||
public EmpresaImposto() {
|
||||
}
|
||||
|
@ -568,6 +571,16 @@ public class EmpresaImposto implements Serializable {
|
|||
this.estado = estado;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Integer getIndiceICMSecf() {
|
||||
return indiceICMSecf;
|
||||
}
|
||||
|
||||
public void setIndiceICMSecf(Integer indiceICMSecf) {
|
||||
this.indiceICMSecf = indiceICMSecf;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 0;
|
||||
|
@ -592,4 +605,4 @@ public class EmpresaImposto implements Serializable {
|
|||
return "com.rjconsultores.ventaboletos.entidad.EmpresaImposto[empresaImpostoId=" + empresaImpostoId + "]";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -78,7 +78,14 @@ public class Ruta implements Serializable {
|
|||
private Boolean indSentidoIda;
|
||||
@Column(name = "NUMRUTA")
|
||||
private Integer numRuta;
|
||||
|
||||
|
||||
@Column(name = "INDTRIBTARIFA")
|
||||
private Boolean indTribTarifa;
|
||||
@Column(name = "INDTRIBPEDAGIO")
|
||||
private Boolean indTribPedagio;
|
||||
@Column(name = "INDTRIBTAXAEMBARQUE")
|
||||
private Boolean indTribTaxaEmbarque;
|
||||
|
||||
public Ruta() {
|
||||
}
|
||||
|
||||
|
@ -239,6 +246,30 @@ public class Ruta implements Serializable {
|
|||
this.grupoRuta = grupoRuta;
|
||||
}
|
||||
|
||||
public Boolean getIndTribTarifa() {
|
||||
return indTribTarifa;
|
||||
}
|
||||
|
||||
public void setIndTribTarifa(Boolean indTribTarifa) {
|
||||
this.indTribTarifa = indTribTarifa;
|
||||
}
|
||||
|
||||
public Boolean getIndTribPedagio() {
|
||||
return indTribPedagio;
|
||||
}
|
||||
|
||||
public void setIndTribPedagio(Boolean indTribPedagio) {
|
||||
this.indTribPedagio = indTribPedagio;
|
||||
}
|
||||
|
||||
public Boolean getIndTribTaxaEmbarque() {
|
||||
return indTribTaxaEmbarque;
|
||||
}
|
||||
|
||||
public void setIndTribTaxaEmbarque(Boolean indTribTaxaEmbarque) {
|
||||
this.indTribTaxaEmbarque = indTribTaxaEmbarque;
|
||||
}
|
||||
|
||||
public Boolean getIndNombreObligatorio() {
|
||||
return indNombreObligatorio;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue