0019537: GLPI - 25705 - Regras ARTEP Customizadas no SRVP para serem incorporadas no TOTALBUS
bug#19537 dev:valdevir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@102487 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
dc713f4bb0
commit
4cb84733dd
|
@ -51,8 +51,16 @@ public class OrgaoCancelacion implements Serializable {
|
||||||
private Integer usuarioId;
|
private Integer usuarioId;
|
||||||
@Column(name = "TIEMPOLIMITE")
|
@Column(name = "TIEMPOLIMITE")
|
||||||
private Integer tiempolimite;
|
private Integer tiempolimite;
|
||||||
|
|
||||||
|
@Column(name = "TIEMPOLIMITE_MIN")
|
||||||
|
private Integer tiempolimiteMin;
|
||||||
|
|
||||||
@Column(name = "TIEMPOLIMITECAMBIO")
|
@Column(name = "TIEMPOLIMITECAMBIO")
|
||||||
private Integer tiempolimiteCambio;
|
private Integer tiempolimiteCambio;
|
||||||
|
|
||||||
|
@Column(name = "TIEMPOLIMITECAMBIO_MIN")
|
||||||
|
private Integer tiempolimiteCambioMin;
|
||||||
|
|
||||||
@Column(name = "INDNAOPERMITETRANSFERENCIA")
|
@Column(name = "INDNAOPERMITETRANSFERENCIA")
|
||||||
private Boolean indnaopermitetransferencia;
|
private Boolean indnaopermitetransferencia;
|
||||||
@Column(name = "INDSOLICITADATOSTARJETA")
|
@Column(name = "INDSOLICITADATOSTARJETA")
|
||||||
|
@ -73,6 +81,24 @@ public class OrgaoCancelacion implements Serializable {
|
||||||
private BigDecimal porcMultaResolAgerba;
|
private BigDecimal porcMultaResolAgerba;
|
||||||
@Column(name = "QTDE_LIMITE_TRANSF_REAT")
|
@Column(name = "QTDE_LIMITE_TRANSF_REAT")
|
||||||
private Integer qtdeLimiteTransfReat;
|
private Integer qtdeLimiteTransfReat;
|
||||||
|
|
||||||
|
@Column(name = "TEMPOLIMITE_APOS_SAIDA_H")
|
||||||
|
private Integer tempolimiteAposSaidaH;
|
||||||
|
|
||||||
|
@Column(name = "TEMPOLIMITE_APOS_SAIDA_MIN")
|
||||||
|
private Integer tempolimiteAposSaidaMin;
|
||||||
|
|
||||||
|
@Column(name = "TROCA_MESMO_DIA_ANTES_H")
|
||||||
|
private Integer trocaMesmoDiaAntesHora;
|
||||||
|
|
||||||
|
@Column(name = "TROCA_MESMO_DIA_ANTES_MIN")
|
||||||
|
private Integer trocaMesmoDiaAntesMin;
|
||||||
|
|
||||||
|
@Column(name = "TROCA_MESMO_DIA_APOS_H")
|
||||||
|
private Integer trocaMesmoDiaAposHora;
|
||||||
|
|
||||||
|
@Column(name = "TROCA_MESMO_DIA_APOS_MIN")
|
||||||
|
private Integer trocaMesmoDiaAposMin;
|
||||||
|
|
||||||
public Integer getOrgaoCancelacionId() {
|
public Integer getOrgaoCancelacionId() {
|
||||||
return orgaoCancelacionId;
|
return orgaoCancelacionId;
|
||||||
|
@ -244,4 +270,64 @@ public class OrgaoCancelacion implements Serializable {
|
||||||
this.qtdeLimiteTransfReat = qtdeLimiteTransfReat;
|
this.qtdeLimiteTransfReat = qtdeLimiteTransfReat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getTiempolimiteMin() {
|
||||||
|
return tiempolimiteMin == null ? 0 : tiempolimiteMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTiempolimiteMin(Integer tiempolimiteMin) {
|
||||||
|
this.tiempolimiteMin = tiempolimiteMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getTiempolimiteCambioMin() {
|
||||||
|
return tiempolimiteCambioMin == null ? 0 : tiempolimiteCambioMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTiempolimiteCambioMin(Integer tiempolimiteCambioMin) {
|
||||||
|
this.tiempolimiteCambioMin = tiempolimiteCambioMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getTempolimiteAposSaidaH() {
|
||||||
|
return tempolimiteAposSaidaH == null ? 0 : tempolimiteAposSaidaH;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTempolimiteAposSaidaH(Integer tempolimiteAposSaidaH) {
|
||||||
|
this.tempolimiteAposSaidaH = tempolimiteAposSaidaH;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getTempolimiteAposSaidaMin() {
|
||||||
|
return tempolimiteAposSaidaMin == null ? 0 : tempolimiteAposSaidaMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTempolimiteAposSaidaMin(Integer tempolimiteAposSaidaMin) {
|
||||||
|
this.tempolimiteAposSaidaMin = tempolimiteAposSaidaMin;
|
||||||
|
}
|
||||||
|
public Integer getTrocaMesmoDiaAntesHora() {
|
||||||
|
return trocaMesmoDiaAntesHora == null ? 0 : trocaMesmoDiaAntesHora;
|
||||||
|
}
|
||||||
|
public void setTrocaMesmoDiaAntesHora(Integer trocaMesmoDiaAntesHora) {
|
||||||
|
this.trocaMesmoDiaAntesHora = trocaMesmoDiaAntesHora;
|
||||||
|
}
|
||||||
|
public Integer getTrocaMesmoDiaAntesMin() {
|
||||||
|
return trocaMesmoDiaAntesMin == null ? 0 : trocaMesmoDiaAntesMin;
|
||||||
|
}
|
||||||
|
public void setTrocaMesmoDiaAntesMin(Integer trocaMesmoDiaAntesMin) {
|
||||||
|
this.trocaMesmoDiaAntesMin = trocaMesmoDiaAntesMin;
|
||||||
|
}
|
||||||
|
public Integer getTrocaMesmoDiaAposHora() {
|
||||||
|
return trocaMesmoDiaAposHora == null ? 0 : trocaMesmoDiaAposHora;
|
||||||
|
}
|
||||||
|
public void setTrocaMesmoDiaAposHora(Integer trocaMesmoDiaAposHora) {
|
||||||
|
this.trocaMesmoDiaAposHora = trocaMesmoDiaAposHora;
|
||||||
|
}
|
||||||
|
public Integer getTrocaMesmoDiaAposMin() {
|
||||||
|
return trocaMesmoDiaAposMin == null ? 0 : trocaMesmoDiaAposMin;
|
||||||
|
}
|
||||||
|
public void setTrocaMesmoDiaAposMin(Integer trocaMesmoDiaAposMin) {
|
||||||
|
this.trocaMesmoDiaAposMin = trocaMesmoDiaAposMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue