fixes bug #6956
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@51465 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
9f912ac7b8
commit
993620c8a1
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue