diff --git a/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java b/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java index f12360372..87697fcd8 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java +++ b/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java @@ -15,7 +15,6 @@ import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; @@ -75,6 +74,9 @@ public class FormaPago implements Serializable { @Column(name = "INDRESTRICAOFORMAPAGO") private String indRestricaoFormaPago; + @Column(name = "INDESTORNO") + private Boolean indProcessoEstorno; + public FormaPago() { super(); } @@ -257,4 +259,14 @@ public class FormaPago implements Serializable { public void setIndRestricaoFormaPago(String indRestricaoFormaPago) { this.indRestricaoFormaPago = indRestricaoFormaPago; } + + public Boolean getIndProcessoEstorno() { + return indProcessoEstorno == null ? false : indProcessoEstorno; + } + + public void setIndProcessoEstorno(Boolean indProcessoEstorno) { + this.indProcessoEstorno = indProcessoEstorno; + } + + }