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
|
@ -71,6 +71,9 @@ public class Ruta implements Serializable {
|
|||
@OneToOne
|
||||
@JoinColumn(name = "ORGAOCONCEDENTE_ID")
|
||||
private OrgaoConcedente orgaoConcedente;
|
||||
|
||||
@Column(name = "INDSENTIDOIDA")
|
||||
private Boolean indSentidoIda;
|
||||
|
||||
public Boolean getIndNombreObligatorio() {
|
||||
return indNombreObligatorio;
|
||||
|
@ -215,6 +218,15 @@ public class Ruta implements Serializable {
|
|||
public void setOrgaoConcedente(OrgaoConcedente orgaoConcedente) {
|
||||
this.orgaoConcedente = orgaoConcedente;
|
||||
}
|
||||
|
||||
|
||||
public Boolean getIndSentidoIda() {
|
||||
return indSentidoIda;
|
||||
}
|
||||
|
||||
public void setIndSentidoIda(Boolean indSentidoIda) {
|
||||
this.indSentidoIda = indSentidoIda;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
|
|
|
@ -19,6 +19,7 @@ public class RutaTramoVO {
|
|||
private List<Empresa> lsEmpresa;
|
||||
private String prefixo;
|
||||
private String descRuta;
|
||||
private Boolean indSentidoIda;
|
||||
|
||||
public RutaTramoVO() {
|
||||
lsSecuenciaRutaTramoVO = new ArrayList<SecuenciaRutaTramoVO>();
|
||||
|
@ -107,4 +108,14 @@ public class RutaTramoVO {
|
|||
public void setDescRuta(String descRuta) {
|
||||
this.descRuta = descRuta;
|
||||
}
|
||||
|
||||
public Boolean getIndSentidoIda() {
|
||||
return indSentidoIda;
|
||||
}
|
||||
|
||||
public void setIndSentidoIda(Boolean indSentidoIda) {
|
||||
this.indSentidoIda = indSentidoIda;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue