From ca3a02f62da56766410d488c4e1ea564c86d4481 Mon Sep 17 00:00:00 2001 From: valdir Date: Thu, 1 Oct 2020 17:29:52 +0000 Subject: [PATCH] =?UTF-8?q?0020523:=20Aguia=20Branca=20-=20GLPI=2029148=20?= =?UTF-8?q?-=20[PROJETO]=20-=20ESPEC=20DE=20REGISTRO=20NO=20CAIXA=20DA=20S?= =?UTF-8?q?OLICITA=C3=87=C3=83O=20DE=20CANCELAMENTO=20-=20DUVIDA=20bug#205?= =?UTF-8?q?23=20dev:wilian=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@103634 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/FormaPago.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java b/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java index 21b185f1c..32ef4d739 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java +++ b/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java @@ -87,6 +87,9 @@ public class FormaPago implements Serializable { @Enumerated(EnumType.STRING) private TipoCarteiraDigital tipoCarteiraDigital; + @Column(name = "TIPOEVENTOEXTRA_ID") + private Long tipoEventoExtraId; + public FormaPago() { super(); } @@ -301,4 +304,12 @@ public class FormaPago implements Serializable { public void setIndTransferenciaReativacao(Boolean indTransferenciaReativacao) { this.indTransferenciaReativacao = indTransferenciaReativacao; } + + public Long getTipoEventoExtraId() { + return tipoEventoExtraId; + } + + public void setTipoEventoExtraId(Long tipoEventoExtraId) { + this.tipoEventoExtraId = tipoEventoExtraId; + } }