diff --git a/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarifaOficialEscalaGroupVO.java b/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarifaOficialEscalaGroupVO.java new file mode 100644 index 000000000..346a751e8 --- /dev/null +++ b/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarifaOficialEscalaGroupVO.java @@ -0,0 +1,78 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ +package com.rjconsultores.ventaboletos.vo.esquemaoperacional; + +import java.math.BigDecimal; + +/** + * + * @author Desenvolvimento + */ +public class TarifaOficialEscalaGroupVO { + + private String DESCRUTA; + private BigDecimal RUTA_ID; + private BigDecimal MONEDA_ID; + private BigDecimal MARCA_ID; + private String DESCMONEDA; + private String DESCMARCA; + private String DESCCLASE; + + public String getDESCCLASE() { + return DESCCLASE; + } + + public void setDESCCLASE(String DESCCLASE) { + this.DESCCLASE = DESCCLASE; + } + + public String getDESCMARCA() { + return DESCMARCA; + } + + public void setDESCMARCA(String DESCMARCA) { + this.DESCMARCA = DESCMARCA; + } + + public String getDESCMONEDA() { + return DESCMONEDA; + } + + public void setDESCMONEDA(String DESCMONEDA) { + this.DESCMONEDA = DESCMONEDA; + } + + public String getDESCRUTA() { + return DESCRUTA; + } + + public void setDESCRUTA(String DESCRUTA) { + this.DESCRUTA = DESCRUTA; + } + + public BigDecimal getMARCA_ID() { + return MARCA_ID; + } + + public void setMARCA_ID(BigDecimal MARCA_ID) { + this.MARCA_ID = MARCA_ID; + } + + public BigDecimal getMONEDA_ID() { + return MONEDA_ID; + } + + public void setMONEDA_ID(BigDecimal MONEDA_ID) { + this.MONEDA_ID = MONEDA_ID; + } + + public BigDecimal getRUTA_ID() { + return RUTA_ID; + } + + public void setRUTA_ID(BigDecimal RUTA_ID) { + this.RUTA_ID = RUTA_ID; + } +} diff --git a/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarifaOficialEscalaVO.java b/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarifaOficialEscalaVO.java new file mode 100644 index 000000000..4e3da0a7e --- /dev/null +++ b/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarifaOficialEscalaVO.java @@ -0,0 +1,135 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ +package com.rjconsultores.ventaboletos.vo.esquemaoperacional; + +import java.math.BigDecimal; + +/** + * + * @author Desenvolvimento + */ +public class TarifaOficialEscalaVO { + + private String CVEORIGEM; + private String DESCORIGEM; + private String CVEDESTINO; + private String DESCDESTINO; + private BigDecimal NUMSECORIGEM; + private BigDecimal NUMSECDESTINO; + private BigDecimal PRECIO; + private BigDecimal TAXAEMBARQUE; + private BigDecimal PEDAGIO; + private BigDecimal OUTROS; + private BigDecimal SEGURO; + private BigDecimal RUTAID; + private String DESCRUTA; + + public TarifaOficialEscalaVO() { + } + + public String getCVEDESTINO() { + return CVEDESTINO; + } + + public void setCVEDESTINO(String CVEDESTINO) { + this.CVEDESTINO = CVEDESTINO; + } + + public String getCVEORIGEM() { + return CVEORIGEM; + } + + public void setCVEORIGEM(String CVEORIGEM) { + this.CVEORIGEM = CVEORIGEM; + } + + public String getDESCDESTINO() { + return DESCDESTINO; + } + + public void setDESCDESTINO(String DESCDESTINO) { + this.DESCDESTINO = DESCDESTINO; + } + + public String getDESCORIGEM() { + return DESCORIGEM; + } + + public void setDESCORIGEM(String DESCORIGEM) { + this.DESCORIGEM = DESCORIGEM; + } + + public String getDESCRUTA() { + return DESCRUTA; + } + + public void setDESCRUTA(String DESCRUTA) { + this.DESCRUTA = DESCRUTA; + } + + public BigDecimal getNUMSECDESTINO() { + return NUMSECDESTINO; + } + + public void setNUMSECDESTINO(BigDecimal NUMSECDESTINO) { + this.NUMSECDESTINO = NUMSECDESTINO; + } + + public BigDecimal getNUMSECORIGEM() { + return NUMSECORIGEM; + } + + public void setNUMSECORIGEM(BigDecimal NUMSECORIGEM) { + this.NUMSECORIGEM = NUMSECORIGEM; + } + + public BigDecimal getPRECIO() { + return PRECIO; + } + + public void setPRECIO(BigDecimal PRECIO) { + this.PRECIO = PRECIO; + } + + public BigDecimal getRUTAID() { + return RUTAID; + } + + public void setRUTAID(BigDecimal RUTAID) { + this.RUTAID = RUTAID; + } + + public BigDecimal getOUTROS() { + return OUTROS; + } + + public void setOUTROS(BigDecimal OUTROS) { + this.OUTROS = OUTROS; + } + + public BigDecimal getPEDAGIO() { + return PEDAGIO; + } + + public void setPEDAGIO(BigDecimal PEDAGIO) { + this.PEDAGIO = PEDAGIO; + } + + public BigDecimal getSEGURO() { + return SEGURO; + } + + public void setSEGURO(BigDecimal SEGURO) { + this.SEGURO = SEGURO; + } + + public BigDecimal getTAXAEMBARQUE() { + return TAXAEMBARQUE; + } + + public void setTAXAEMBARQUE(BigDecimal TAXAEMBARQUE) { + this.TAXAEMBARQUE = TAXAEMBARQUE; + } +}