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;
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue