From f6a2be3f446fc1b30f8610d47cae1f641c72fd7e Mon Sep 17 00:00:00 2001 From: wilian Date: Wed, 1 Nov 2017 18:30:23 +0000 Subject: [PATCH] =?UTF-8?q?fixes=20bug=20#9930=20-=20Bloqueia=20a=20edi?= =?UTF-8?q?=C3=A7=C3=A3o=20das=20formas=20de=20pagamento=20que=20possuem?= =?UTF-8?q?=20CVESISTEMA=20preenchido.?= 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@75975 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/FormaPago.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java b/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java index 8ded6aa55..c2506ff2c 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java +++ b/src/com/rjconsultores/ventaboletos/entidad/FormaPago.java @@ -67,6 +67,8 @@ public class FormaPago implements Serializable { @Column(name = "TIPO_PAGO") @Enumerated(EnumType.ORDINAL) private TipoFormapago tipoFormapago; + @Column(name = "CVESISTEMA") + private String cveSistema; public FormaPago() { super(); @@ -228,4 +230,12 @@ public class FormaPago implements Serializable { public void setTipoFormapago(TipoFormapago tipoFormapago) { this.tipoFormapago = tipoFormapago; } + + public String getCveSistema() { + return cveSistema; + } + + public void setCveSistema(String cveSistema) { + this.cveSistema = cveSistema; + } }