wilian 2015-12-22 12:09:29 +00:00
parent 9f912ac7b8
commit 993620c8a1
1 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,6 @@
package com.rjconsultores.ventaboletos.entidad;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
@ -19,9 +20,10 @@ import javax.persistence.TemporalType;
@Entity
@SequenceGenerator(name = "ORGAO_CANCELACION_SEQ", sequenceName = "ORGAO_CANCELACION_SEQ", allocationSize = 1)
@Table(name = "ORGAO_CANCELACION")
public class OrgaoCancelacion {
public class OrgaoCancelacion implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@GeneratedValue(strategy = GenerationType.AUTO, generator = "ORGAO_CANCELACION_SEQ")
@ -46,6 +48,10 @@ public class OrgaoCancelacion {
private Integer usuarioId;
@Column(name = "TIEMPOLIMITE")
private Integer tiempolimite;
@Column(name = "TIEMPOLIMITECAMBIO")
private Integer tiempolimiteCambio;
@Column(name = "INDNAOPERMITETRANSFERENCIA")
private Boolean indnaopermitetransferencia;
public Integer getOrgaoCancelacionId() {
return orgaoCancelacionId;
@ -100,5 +106,17 @@ public class OrgaoCancelacion {
}
public void setTiempolimite(Integer tiempolimite) {
this.tiempolimite = tiempolimite;
}
public Integer getTiempolimiteCambio() {
return tiempolimiteCambio;
}
public void setTiempolimiteCambio(Integer tiempolimiteCambio) {
this.tiempolimiteCambio = tiempolimiteCambio;
}
public Boolean getIndnaopermitetransferencia() {
return indnaopermitetransferencia;
}
public void setIndnaopermitetransferencia(Boolean indnaopermitetransferencia) {
this.indnaopermitetransferencia = indnaopermitetransferencia;
}
}