caso de uso 3411 inserir vigência na consulta pricing
caso de uso 3410 ajuste cadastro de localidade git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@23798 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
6bedbed68b
commit
4cf833108f
|
@ -72,6 +72,9 @@ public class Ruta implements Serializable {
|
||||||
@JoinColumn(name = "ORGAOCONCEDENTE_ID")
|
@JoinColumn(name = "ORGAOCONCEDENTE_ID")
|
||||||
private OrgaoConcedente orgaoConcedente;
|
private OrgaoConcedente orgaoConcedente;
|
||||||
|
|
||||||
|
@Column(name = "INDSENTIDOIDA")
|
||||||
|
private Boolean indSentidoIda;
|
||||||
|
|
||||||
public Boolean getIndNombreObligatorio() {
|
public Boolean getIndNombreObligatorio() {
|
||||||
return indNombreObligatorio;
|
return indNombreObligatorio;
|
||||||
}
|
}
|
||||||
|
@ -216,6 +219,15 @@ public class Ruta implements Serializable {
|
||||||
this.orgaoConcedente = orgaoConcedente;
|
this.orgaoConcedente = orgaoConcedente;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Boolean getIndSentidoIda() {
|
||||||
|
return indSentidoIda;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndSentidoIda(Boolean indSentidoIda) {
|
||||||
|
this.indSentidoIda = indSentidoIda;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
|
|
@ -19,6 +19,7 @@ public class RutaTramoVO {
|
||||||
private List<Empresa> lsEmpresa;
|
private List<Empresa> lsEmpresa;
|
||||||
private String prefixo;
|
private String prefixo;
|
||||||
private String descRuta;
|
private String descRuta;
|
||||||
|
private Boolean indSentidoIda;
|
||||||
|
|
||||||
public RutaTramoVO() {
|
public RutaTramoVO() {
|
||||||
lsSecuenciaRutaTramoVO = new ArrayList<SecuenciaRutaTramoVO>();
|
lsSecuenciaRutaTramoVO = new ArrayList<SecuenciaRutaTramoVO>();
|
||||||
|
@ -107,4 +108,14 @@ public class RutaTramoVO {
|
||||||
public void setDescRuta(String descRuta) {
|
public void setDescRuta(String descRuta) {
|
||||||
this.descRuta = descRuta;
|
this.descRuta = descRuta;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndSentidoIda() {
|
||||||
|
return indSentidoIda;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndSentidoIda(Boolean indSentidoIda) {
|
||||||
|
this.indSentidoIda = indSentidoIda;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue