fixes bug #7430
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@55706 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
befe62b597
commit
1756943413
|
@ -5,6 +5,7 @@ import java.util.Collections;
|
|||
import java.util.List;
|
||||
|
||||
import com.rjconsultores.ventaboletos.entidad.ClaseServicio;
|
||||
import com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa;
|
||||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||
import com.rjconsultores.ventaboletos.entidad.OrgaoConcedente;
|
||||
|
||||
|
@ -17,6 +18,8 @@ public class RutaTramoVO {
|
|||
private List<SecuenciaRutaTramoVO> lsSecuenciaRutaTramoVO;
|
||||
private List<SecuenciaRutaTramoCoeficienteVO> lsCombinacionRutaTramoVO;
|
||||
private List<Empresa> lsEmpresa;
|
||||
private CoeficienteTarifa coeficienteDefaul1;
|
||||
private CoeficienteTarifa coeficienteDefaul2;
|
||||
private String prefixo;
|
||||
private String descRuta;
|
||||
private Boolean indSentidoIda;
|
||||
|
@ -126,6 +129,22 @@ public class RutaTramoVO {
|
|||
public void setIndSentidoIda(Boolean indSentidoIda) {
|
||||
this.indSentidoIda = indSentidoIda;
|
||||
}
|
||||
|
||||
public CoeficienteTarifa getCoeficienteDefaul1() {
|
||||
return coeficienteDefaul1;
|
||||
}
|
||||
|
||||
public void setCoeficienteDefaul1(CoeficienteTarifa coeficienteDefaul1) {
|
||||
this.coeficienteDefaul1 = coeficienteDefaul1;
|
||||
}
|
||||
|
||||
public CoeficienteTarifa getCoeficienteDefaul2() {
|
||||
return coeficienteDefaul2;
|
||||
}
|
||||
|
||||
public void setCoeficienteDefaul2(CoeficienteTarifa coeficienteDefaul2) {
|
||||
this.coeficienteDefaul2 = coeficienteDefaul2;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue