From 63000a76e30b63dab350d65603e3aa038f8c0450 Mon Sep 17 00:00:00 2001 From: valdir Date: Thu, 6 Aug 2020 13:15:23 +0000 Subject: [PATCH] =?UTF-8?q?0019804:=20GAP01=5FMetamorfose=20-=20Relat?= =?UTF-8?q?=C3=B3rio=20de=20Solicita=C3=A7=C3=A3o=20de=20Cancelamento=2000?= =?UTF-8?q?19805:=20GAP02.1=5FMetamorfose=20-=20Forma=20de=20Pagamento=20b?= =?UTF-8?q?ug#19805=20bug#19804=20dev:valdevir=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@102798 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/FormaPago.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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; + } + + }