From 4794fab89da865529e10a665941092b7a86c3546 Mon Sep 17 00:00:00 2001 From: valdir Date: Fri, 9 Nov 2018 18:15:02 +0000 Subject: [PATCH] 0012283: Konduto: integracao com anti fraude bug#12283 dev:valdevir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@86916 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Empresa.java | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index 367205447..ef9a794d2 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -241,7 +241,9 @@ public class Empresa implements Serializable { @Column(name = "INDIMPEMBARQDESEMBARQCUPOM") private Boolean indImprimirEmbarqueDesembarqCupom; - + + @Column(name = "ANTIFRAUDEKEY") + private String antifraudekey; public Empresa() { super(); @@ -920,6 +922,14 @@ public class Empresa implements Serializable { public void setIndImprimirEmbarqueDesembarqCupom(Boolean indImprimirEmbarqueDesembarqCupom) { this.indImprimirEmbarqueDesembarqCupom = indImprimirEmbarqueDesembarqCupom; } + + public String getAntifraudekey() { + return antifraudekey; + } + + public void setAntifraudekey(String antifraudekey) { + this.antifraudekey = antifraudekey; + } }