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