From 5be86200dcadbdabf5a6db14ad2187e8acbe43e1 Mon Sep 17 00:00:00 2001 From: "lucas.calixto" Date: Thu, 4 May 2017 13:34:32 +0000 Subject: [PATCH] fixes bug#8758 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@68508 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Boleto.java | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Boleto.java b/src/com/rjconsultores/ventaboletos/entidad/Boleto.java index 9cfa4c86f..192441732 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Boleto.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Boleto.java @@ -314,9 +314,6 @@ public class Boleto implements java.io.Serializable { @Column(name = "ESTADOCIVIL_ID", precision = 2, scale = 0) private Byte estadocivilId; - @Column(name = "COO", length = 6) - private String coo; - public Boleto() { } @@ -345,7 +342,7 @@ public class Boleto implements java.io.Serializable { String desctelefono, String numasientovinculado, String desctipodoc2, String descnumdoc2, Date fecnacimiento, Boolean indsegundaviaimpressa, String dispositivoembarcada, Long numerobilheteembarcada, Integer ptovtaventaId, String ccf, Long rmdId, String serieimpfiscaloriginal, Long boletoanteriorId, - Long aidfId, String nacionalidad, String sexo, Byte estadocivilId, String coo) { + Long aidfId, String nacionalidad, String sexo, Byte estadocivilId) { this.boletoId = boletoId; this.numasiento = numasiento; this.categoriaId = categoriaId; @@ -442,7 +439,6 @@ public class Boleto implements java.io.Serializable { this.nacionalidad = nacionalidad; this.sexo = sexo; this.estadocivilId = estadocivilId; - this.coo = coo; } public long getBoletoId() { @@ -1213,12 +1209,4 @@ public class Boleto implements java.io.Serializable { this.estadocivilId = estadocivilId; } - public String getCoo() { - return this.coo; - } - - public void setCoo(String coo) { - this.coo = coo; - } - }