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; + } }